diff options
| author | Adam <[email protected]> | 2025-11-05 11:56:32 -0600 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-11-05 11:56:32 -0600 |
| commit | 582d9a962236789ebc6e8ec37714506d783cf35d (patch) | |
| tree | 3cb2ef929679a3db4dfc2c65601ab05e556525d0 | |
| parent | d525fbf82940442d8d47265b7d7d0a9af8c282bc (diff) | |
| download | opencode-582d9a962236789ebc6e8ec37714506d783cf35d.tar.gz opencode-582d9a962236789ebc6e8ec37714506d783cf35d.zip | |
fix(desktop): type issue
| -rw-r--r-- | packages/ui/src/components/input.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/ui/src/components/input.tsx b/packages/ui/src/components/input.tsx index 55e84c3af..7688d9fc5 100644 --- a/packages/ui/src/components/input.tsx +++ b/packages/ui/src/components/input.tsx @@ -4,7 +4,7 @@ import type { ComponentProps } from "solid-js" export interface InputProps extends ComponentProps<typeof Kobalte.Input>, - Pick<ComponentProps<typeof Kobalte>, "value" | "onChange" | "onKeyDown"> { + Partial<Pick<ComponentProps<typeof Kobalte>, "value" | "onChange" | "onKeyDown">> { label?: string hideLabel?: boolean description?: string |
