summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/App.tsx
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-05-18 00:30:13 -0700
committerN. Taylor Mullen <[email protected]>2025-05-18 00:31:55 -0700
commit0d4e0fe6477712f4781438b84096690d2e3c208e (patch)
tree7a80cf81e7f1bee25f1b0c8aae64c42d969f0f93 /packages/cli/src/ui/App.tsx
parent3aaeb447396008ef098f09a5f633fd4a9620ccc4 (diff)
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
Diffstat (limited to 'packages/cli/src/ui/App.tsx')
-rw-r--r--packages/cli/src/ui/App.tsx3
1 files changed, 0 insertions, 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 ? <AutoAcceptIndicator /> : undefined
- }
/>
<Box
marginTop={1}