fix(ui): update InputFieldProps to allow ReactNode for description

This commit is contained in:
Adam Shiervani 2025-08-12 14:29:42 +02:00
parent 041f42a792
commit 61b99f07ce
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ type InputFieldProps = {
type InputFieldWithLabelProps = InputFieldProps & {
label: React.ReactNode;
description?: string | null;
description?: React.ReactNode | string | null;
};
const InputField = forwardRef<HTMLInputElement, InputFieldProps>(function InputField(