Browse Source

chore: generate

opencode-agent[bot] 3 weeks ago
parent
commit
5e3162b7f4

+ 1 - 1
packages/opencode/src/cli/cmd/tui/component/prompt/autocomplete.tsx

@@ -136,7 +136,7 @@ export function Autocomplete(props: {
   const [search, setSearch] = createSignal("")
   createEffect(() => {
     const next = filter()
-    setSearch(next ? next : "");
+    setSearch(next ? next : "")
   })
 
   // When the filter changes due to how TUI works, the mousemove might still be triggered