Skip to content

Commit

Permalink
fix: type error in combobox
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMcIntosh committed Jan 12, 2024
1 parent c7655ba commit 6b3697f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ComboBox/ComboBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { TextAreaProps } from "../TextArea/TextArea";
const Item: React.FC<{
onClick: React.MouseEventHandler<HTMLDivElement>;
value: string;
children: React.ReactElement<HTMLTextAreaElement>;
children: React.ReactNode;
}> = ({ children, value, onClick }) => {
return (
<Button className={styles.item} variant="ghost" asChild highContrast>
Expand Down

0 comments on commit 6b3697f

Please sign in to comment.