cli: remove ANSI formatting from reasoning output

pull/11814/head
Dax Raad 2026-02-02 12:51:53 -05:00
parent 38efdf82a1
commit 1c07b14545
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ export const RunCommand = cmd({
const line = `Thinking: ${text}`
if (process.stdout.isTTY) {
UI.empty()
UI.println(`\u001b[3m${line}\u001b[0m`)
UI.println(line)
UI.empty()
continue
}