summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-11-05 11:56:32 -0600
committerAdam <[email protected]>2025-11-05 11:56:32 -0600
commit582d9a962236789ebc6e8ec37714506d783cf35d (patch)
tree3cb2ef929679a3db4dfc2c65601ab05e556525d0
parentd525fbf82940442d8d47265b7d7d0a9af8c282bc (diff)
downloadopencode-582d9a962236789ebc6e8ec37714506d783cf35d.tar.gz
opencode-582d9a962236789ebc6e8ec37714506d783cf35d.zip
fix(desktop): type issue
-rw-r--r--packages/ui/src/components/input.tsx2
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