diff options
| author | Saatvik Arya <[email protected]> | 2024-07-24 22:14:15 -0700 |
|---|---|---|
| committer | Saatvik Arya <[email protected]> | 2024-07-25 13:08:40 -0700 |
| commit | 04e57ccf80a9fdca045eb5782dc9f520918a4849 (patch) | |
| tree | 5b740f34fbb30895a8a9017ef82427126830b73c /packages | |
| parent | merge oopsies (diff) | |
| download | supermemory-04e57ccf80a9fdca045eb5782dc9f520918a4849.tar.xz supermemory-04e57ccf80a9fdca045eb5782dc9f520918a4849.zip | |
address ts issues
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/ui/shadcn/combobox.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/ui/shadcn/combobox.tsx b/packages/ui/shadcn/combobox.tsx index 81019b10..080a3485 100644 --- a/packages/ui/shadcn/combobox.tsx +++ b/packages/ui/shadcn/combobox.tsx @@ -45,7 +45,9 @@ const ComboboxWithCreate: React.FC<ComboboxWithCreateProps> = ({ return ( <Command className={cn("group", className)}> <CommandInput - onChangeCapture={(e) => setInputValue(e.currentTarget.value)} + onChangeCapture={(e: React.ChangeEvent<HTMLInputElement>) => + setInputValue(e.currentTarget.value) + } placeholder={placeholder} value={inputValue} /> |