From f6e4353bf15ed87e1065a3ed0a4eab0955204e31 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 23 Sep 2025 00:32:51 -0400 Subject: [PATCH] tui: remove unused imports from prompt component --- packages/opencode/src/cli/cmd/tui/component/prompt.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/opencode/src/cli/cmd/tui/component/prompt.tsx b/packages/opencode/src/cli/cmd/tui/component/prompt.tsx index 3d91027b3..9a4dcd166 100644 --- a/packages/opencode/src/cli/cmd/tui/component/prompt.tsx +++ b/packages/opencode/src/cli/cmd/tui/component/prompt.tsx @@ -12,8 +12,6 @@ import { Identifier } from "../../../../id/id" import { createStore, produce } from "solid-js/store" import type { FilePart } from "@opencode-ai/sdk" import fuzzysort from "fuzzysort" -import { DialogModel } from "./dialog-model" -import { DialogAgent } from "./dialog-agent" import { useCommandDialog } from "./dialog-command" export type PromptProps = { @@ -253,7 +251,6 @@ function Autocomplete(props: { ref: (ref: AutocompleteRef) => void }) { const sdk = useSDK() - const local = useLocal() const sync = useSync() const command = useCommandDialog()