diff --git a/packages/design-system-component-library-yeahyeahyeah/components/form/TextBox.tsx b/packages/design-system-component-library-yeahyeahyeah/components/form/TextBox.tsx index 57a301d..5f6baf2 100644 --- a/packages/design-system-component-library-yeahyeahyeah/components/form/TextBox.tsx +++ b/packages/design-system-component-library-yeahyeahyeah/components/form/TextBox.tsx @@ -13,7 +13,7 @@ export interface ITextBoxProps { user?: Pick & { username: string; href: string }; form: Pick; inputValue: string; - setInputValue: React.Dispatch>; + setInputValue?: React.Dispatch>; dispatch?: React.Dispatch; variant: 'write' | 'inline' | 'start'; uploadCallback: () => void;