From 5527b4ea4d3cf91ade526903984a093788866f7a Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 3 Mar 2026 13:16:00 -0500 Subject: [PATCH] tui: simplify running tool display to show tool names more directly in task UI --- .../opencode/src/cli/cmd/tui/routes/session/index.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx index 71ac810e93..dad1b5d2fb 100644 --- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx @@ -1986,14 +1986,7 @@ function Task(props: ToolProps) { {" "} · {tools().length} toolcalls - {(item) => { - const title = createMemo(() => (item().state as any).title) - return ( - <> - {"\n"}↳ {Locale.titlecase(item().tool)} {title()} - - ) - }} + {"\n"}↳ {Locale.titlecase(current()!.tool)} {(current()!.state as any).title}