From 6b3697f4cbc57e625696d7d3bf711758cae118e4 Mon Sep 17 00:00:00 2001 From: Marc McIntosh Date: Fri, 12 Jan 2024 22:41:20 +0100 Subject: [PATCH] fix: type error in combobox --- src/components/ComboBox/ComboBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ComboBox/ComboBox.tsx b/src/components/ComboBox/ComboBox.tsx index bc11fc2b..bd29ba3b 100644 --- a/src/components/ComboBox/ComboBox.tsx +++ b/src/components/ComboBox/ComboBox.tsx @@ -18,7 +18,7 @@ import { TextAreaProps } from "../TextArea/TextArea"; const Item: React.FC<{ onClick: React.MouseEventHandler; value: string; - children: React.ReactElement; + children: React.ReactNode; }> = ({ children, value, onClick }) => { return (