From 0d4e0fe6477712f4781438b84096690d2e3c208e Mon Sep 17 00:00:00 2001 From: Taylor Mullen Date: Sun, 18 May 2025 00:30:13 -0700 Subject: [PATCH] fix(cli): Remove duplicate auto-accept indicator - The auto-accept edits indicator was appearing in two places: once next to the loading indicator and again in the CWD bar. - This was introduced when the CWD bar was made always visible. - This commit removes the duplicate indicator, leaving only the one in the CWD bar. Fixes https://b.corp.google.com/issues/418498237 --- packages/cli/src/ui/App.tsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index bd009e77..eb34fb87 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -330,9 +330,6 @@ export const App = ({ isLoading={streamingState === StreamingState.Responding} currentLoadingPhrase={currentLoadingPhrase} elapsedTime={elapsedTime} - rightContent={ - showAutoAcceptIndicator ? : undefined - } />