summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop/src/components
diff options
context:
space:
mode:
authorAdam <[email protected]>2025-10-27 15:37:03 -0500
committerAdam <[email protected]>2025-10-27 15:37:07 -0500
commit485e4520e7a1292176373068f37fb91356b68948 (patch)
tree5dcd79945639d8a88bd658a8a2db0b62d8ac1d83 /packages/desktop/src/components
parentfc115ea367dd034c7b989819d4f547c5d7519253 (diff)
downloadopencode-485e4520e7a1292176373068f37fb91356b68948.tar.gz
opencode-485e4520e7a1292176373068f37fb91356b68948.zip
wip: desktop work
Diffstat (limited to 'packages/desktop/src/components')
-rw-r--r--packages/desktop/src/components/assistant-message.tsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/packages/desktop/src/components/assistant-message.tsx b/packages/desktop/src/components/assistant-message.tsx
index 2e3d659aa..38c06bbe5 100644
--- a/packages/desktop/src/components/assistant-message.tsx
+++ b/packages/desktop/src/components/assistant-message.tsx
@@ -6,15 +6,15 @@ import { Dynamic } from "solid-js/web"
import { Markdown } from "./markdown"
import { Collapsible, Icon, IconProps } from "@opencode-ai/ui"
import { getDirectory, getFilename } from "@/utils"
-import { ListTool } from "opencode/tool/ls"
-import { GlobTool } from "opencode/tool/glob"
-import { GrepTool } from "opencode/tool/grep"
-import { WebFetchTool } from "opencode/tool/webfetch"
-import { TaskTool } from "opencode/tool/task"
-import { BashTool } from "opencode/tool/bash"
-import { EditTool } from "opencode/tool/edit"
+import type { ListTool } from "opencode/tool/ls"
+import type { GlobTool } from "opencode/tool/glob"
+import type { GrepTool } from "opencode/tool/grep"
+import type { WebFetchTool } from "opencode/tool/webfetch"
+import type { TaskTool } from "opencode/tool/task"
+import type { BashTool } from "opencode/tool/bash"
+import type { EditTool } from "opencode/tool/edit"
+import type { WriteTool } from "opencode/tool/write"
import { DiffChanges } from "./diff-changes"
-import { WriteTool } from "opencode/tool/write"
export function AssistantMessage(props: { message: AssistantMessage; parts: Part[] }) {
return (