tui: remove toolcall count from task status to reduce visual clutter

This commit is contained in:
Dax Raad
2026-03-03 14:14:43 -05:00
parent 37fdbe7fa6
commit 6dd903c348

View File

@@ -1978,7 +1978,7 @@ function Task(props: ToolProps<typeof TaskTool>) {
let content = [`Task ${props.input.description}`]
if (isRunning() && tools().length > 0) {
content[0] += ` · ${tools().length} toolcalls`
// content[0] += ` · ${tools().length} toolcalls`
if (current()) content.push(`${Locale.titlecase(current()!.tool)} ${(current()!.state as any).title}`)
else content.push(`└ Running...`)
}