From 6cf2ac0519ab94dd6625b18ab156b5808e4edeba Mon Sep 17 00:00:00 2001 From: Mario Zechner Date: Thu, 13 Nov 2025 01:00:06 +0100 Subject: [PATCH] fix: remove debug context window size from footer --- packages/coding-agent/src/tui/footer.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/coding-agent/src/tui/footer.ts b/packages/coding-agent/src/tui/footer.ts index 7ff04c15..a53a8d14 100644 --- a/packages/coding-agent/src/tui/footer.ts +++ b/packages/coding-agent/src/tui/footer.ts @@ -50,8 +50,7 @@ export class FooterComponent { lastAssistantMessage.usage.cacheWrite : 0; const contextWindow = this.state.model.contextWindow; - const contextPercent = - contextWindow > 0 ? `${((contextTokens / contextWindow) * 100).toFixed(1)}% (${contextWindow})` : "0.0%"; + const contextPercent = contextWindow > 0 ? ((contextTokens / contextWindow) * 100).toFixed(1) : "0.0"; // Format token counts (similar to web-ui) const formatTokens = (count: number): string => {