fix: reset text styling after thinking output

pull/11814/head
Dax Raad 2026-02-02 13:08:07 -05:00
parent 6402c2ab19
commit 651f173a2f
1 changed files with 1 additions and 1 deletions

View File

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