From 61b99f07cef1fda7b9a55bb5e1a4d691bae3244b Mon Sep 17 00:00:00 2001 From: Adam Shiervani Date: Tue, 12 Aug 2025 14:29:42 +0200 Subject: [PATCH] fix(ui): update InputFieldProps to allow ReactNode for description --- ui/src/components/InputField.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/InputField.tsx b/ui/src/components/InputField.tsx index ff2ad55..dfa7a4f 100644 --- a/ui/src/components/InputField.tsx +++ b/ui/src/components/InputField.tsx @@ -26,7 +26,7 @@ type InputFieldProps = { type InputFieldWithLabelProps = InputFieldProps & { label: React.ReactNode; - description?: string | null; + description?: React.ReactNode | string | null; }; const InputField = forwardRef(function InputField(