summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-07-22 12:08:03 -0500
committerGitHub <[email protected]>2025-07-22 12:08:03 -0500
commit3d4c1425d91fe7e0e7d54164032283f76b0ee564 (patch)
tree8f78ef8467cff55f0aa9611b5cd260cf39794bbc
parent10c8b495907069461f5dc464f6285321290c8b14 (diff)
downloadopencode-3d4c1425d91fe7e0e7d54164032283f76b0ee564.tar.gz
opencode-3d4c1425d91fe7e0e7d54164032283f76b0ee564.zip
tweak: cleanup cancelled markdown (#1222)
-rw-r--r--packages/tui/internal/components/chat/message.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/tui/internal/components/chat/message.go b/packages/tui/internal/components/chat/message.go
index 9f38ca8df..a6e976323 100644
--- a/packages/tui/internal/components/chat/message.go
+++ b/packages/tui/internal/components/chat/message.go
@@ -401,7 +401,7 @@ func renderToolDetails(
body += fmt.Sprintf("- [x] %s\n", content)
case "cancelled":
// strike through cancelled todo
- body += fmt.Sprintf("- [~] ~~%s~~\n", content)
+ body += fmt.Sprintf("- [ ] ~~%s~~\n", content)
case "in_progress":
// highlight in progress todo
body += fmt.Sprintf("- [ ] `%s`\n", content)