From 97d397353c2d6dbebb1aa8cbd1862719d8b9c94d Mon Sep 17 00:00:00 2001 From: Jack Wotherspoon Date: Mon, 16 Feb 2026 13:22:46 -0500 Subject: [PATCH] chore: cleanup --- packages/cli/src/config/footerItems.ts | 11 ---- .../cli/src/ui/components/Footer.test.tsx | 2 +- packages/cli/src/ui/components/Footer.tsx | 59 ++----------------- .../ui/components/FooterConfigDialog.test.tsx | 3 +- .../src/ui/components/FooterConfigDialog.tsx | 4 +- .../FooterConfigDialog.test.tsx.snap | 2 +- 6 files changed, 10 insertions(+), 71 deletions(-) diff --git a/packages/cli/src/config/footerItems.ts b/packages/cli/src/config/footerItems.ts index 472a3a5f9b..b9ba040c9f 100644 --- a/packages/cli/src/config/footerItems.ts +++ b/packages/cli/src/config/footerItems.ts @@ -10,61 +10,51 @@ export const ALL_ITEMS = [ { id: 'cwd', header: 'Path', - label: 'cwd', description: 'Current directory path', }, { id: 'git-branch', header: 'Branch', - label: 'git-branch', description: 'Current git branch name', }, { id: 'sandbox-status', header: '/docs', - label: 'sandbox-status', description: 'Sandbox type and trust indicator', }, { id: 'model-name', header: '/model', - label: 'model-name', description: 'Current model identifier', }, { id: 'context-remaining', header: 'Context', - label: 'context-remaining', description: 'Percentage of context window remaining', }, { id: 'quota', header: '/stats', - label: 'quota', description: 'Remaining usage on daily limit', }, { id: 'memory-usage', header: 'Memory', - label: 'memory-usage', description: 'Node.js heap memory usage', }, { id: 'session-id', header: 'Session', - label: 'session-id', description: 'Unique identifier for the current session', }, { id: 'code-changes', header: 'Diff', - label: 'code-changes', description: 'Lines added/removed in the session', }, { id: 'token-count', header: 'Tokens', - label: 'token-count', description: 'Total tokens used in the session', }, ] as const; @@ -74,7 +64,6 @@ export type FooterItemId = (typeof ALL_ITEMS)[number]['id']; export interface FooterItem { id: string; header: string; - label: string; description: string; } diff --git a/packages/cli/src/ui/components/Footer.test.tsx b/packages/cli/src/ui/components/Footer.test.tsx index b3164d8c95..b68007603c 100644 --- a/packages/cli/src/ui/components/Footer.test.tsx +++ b/packages/cli/src/ui/components/Footer.test.tsx @@ -558,7 +558,7 @@ describe('