diff options
| author | Olcan <[email protected]> | 2025-05-20 12:24:20 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-20 12:24:20 -0700 |
| commit | 26add7b078d70a8253c4e4333f0c03aef7a35657 (patch) | |
| tree | a0e26969cde6c6fd8bae8850e898b75a06a30071 /packages/cli/src/ui/App.tsx | |
| parent | 93e89215e3fe8e3fc9cd1a0ced4cc0e44ccecc4e (diff) | |
fix system override indicator (#450)
Diffstat (limited to 'packages/cli/src/ui/App.tsx')
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index 67aee9b5..d168e0e6 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -342,17 +342,17 @@ export const App = ({ justifyContent="space-between" width="100%" > - {geminiMdFileCount > 0 && ( - <Box> - {process.env.GEMINI_SYSTEM_MD && ( - <Text color={Colors.AccentRed}>|⌐■_■| </Text> - )} + <Box> + {process.env.GEMINI_SYSTEM_MD && ( + <Text color={Colors.AccentRed}>|⌐■_■| </Text> + )} + {geminiMdFileCount > 0 && ( <Text color={Colors.SubtleComment}> Using {geminiMdFileCount} GEMINI.md file {geminiMdFileCount > 1 ? 's' : ''} </Text> - </Box> - )} + )} + </Box> <Box> {showAutoAcceptIndicator && !shellModeActive && ( <AutoAcceptIndicator /> |
