diff --git a/packages/coding-agent/src/tui/footer.ts b/packages/coding-agent/src/tui/footer.ts index 2cf391f8..88f2e34c 100644 --- a/packages/coding-agent/src/tui/footer.ts +++ b/packages/coding-agent/src/tui/footer.ts @@ -92,8 +92,7 @@ export class FooterComponent { let rightSide = modelName; if (this.state.model?.reasoning) { const thinkingLevel = this.state.thinkingLevel || "off"; - const thinkingHint = chalk.dim(" (tab to cycle)"); - rightSide = `${modelName} • ${thinkingLevel}${thinkingHint}`; + rightSide = `${modelName} • Thinking: ${thinkingLevel}`; } const statsLeftWidth = visibleWidth(statsLeft);