diff options
| -rw-r--r-- | packages/opencode/src/cli/cmd/tui/routes/session/index.tsx | 2 |
1 files changed, 1 insertions, 1 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 fb0e07a86..b6e363c86 100644 --- a/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx +++ b/packages/opencode/src/cli/cmd/tui/routes/session/index.tsx @@ -1408,7 +1408,7 @@ ToolRegistry.register<typeof TaskTool>({ <For each={props.metadata.summary ?? []}> {(task) => ( <text style={{ fg: theme.textMuted }}> - ∟ {task.tool} {task.state.status === "completed" ? task.state.title : ""} + ∟ {Locale.titlecase(task.tool)} {task.state.status === "completed" ? task.state.title : ""} </text> )} </For> |
