diff options
| author | Allen Hutchison <[email protected]> | 2025-05-14 16:15:41 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-05-14 16:15:41 -0700 |
| commit | a5f5d7b33abf1d4f8711edc658af9e236ae1430b (patch) | |
| tree | 9f6703ec6033f6d232cd7ab46a616daab544fd47 /packages/cli/src/ui/App.tsx | |
| parent | 416813452eafd4b9497fe7f4b36d5000b51c969d (diff) | |
Refactor: Move GEMINI.md file count to Footer (#351)
Diffstat (limited to 'packages/cli/src/ui/App.tsx')
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index 758ddb28..e1ae8da3 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -290,13 +290,6 @@ export const App = ({ {shortenPath(config.getTargetDir(), 70)} </Text> </Box> - {geminiMdFileCount > 0 && ( - <Box> - <Text color={Colors.SubtleComment}> - Using {geminiMdFileCount} GEMINI.md files - </Text> - </Box> - )} </Box> <InputPrompt @@ -363,10 +356,10 @@ export const App = ({ <Footer config={config} - queryLength={query.length} debugMode={config.getDebugMode()} debugMessage={debugMessage} cliVersion={cliVersion} + geminiMdFileCount={geminiMdFileCount} /> <ConsoleOutput /> </Box> |
