Skip to content

Commit c4ffd93

Browse files
committed
tui: replace curved arrow with straight arrow for better terminal compatibility
1 parent c78e7e1 commit c4ffd93

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/opencode/src/cli/cmd/tui/routes/session

packages/opencode/src/cli/cmd/tui/routes/session/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1979,8 +1979,8 @@ function Task(props: ToolProps<typeof TaskTool>) {
19791979

19801980
if (isRunning() && tools().length > 0) {
19811981
// content[0] += ` · ${tools().length} toolcalls`
1982-
if (current()) content.push(` ${Locale.titlecase(current()!.tool)} ${(current()!.state as any).title}`)
1983-
else content.push(` ${tools().length} toolcalls`)
1982+
if (current()) content.push(` ${Locale.titlecase(current()!.tool)} ${(current()!.state as any).title}`)
1983+
else content.push(` ${tools().length} toolcalls`)
19841984
}
19851985

19861986
if (props.part.state.status === "completed") {

0 commit comments

Comments
 (0)