diff options
| author | Billy Biggs <[email protected]> | 2025-06-21 12:15:43 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-21 19:15:43 +0000 |
| commit | 99a6dc026708d91bb628873a769c615640a2c0ea (patch) | |
| tree | afd188378b191f3dca11ae571d9f29095bc6e7b4 /packages/cli/src/ui/App.tsx | |
| parent | 03af6235a922c3cf753ce0b1e257830dee5340aa (diff) | |
Update memory and context summary UI for multiple context filenames (#1282)
Diffstat (limited to 'packages/cli/src/ui/App.tsx')
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index 259319ff..a5e6f361 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -172,7 +172,7 @@ const App = ({ config, settings, startupWarnings = [] }: AppProps) => { addItem( { type: MessageType.INFO, - text: 'Refreshing hierarchical memory (GEMINI.md files)...', + text: 'Refreshing hierarchical memory (GEMINI.md or other context files)...', }, Date.now(), ); @@ -217,6 +217,7 @@ const App = ({ config, settings, startupWarnings = [] }: AppProps) => { pendingHistoryItems: pendingSlashCommandHistoryItems, } = useSlashCommandProcessor( config, + settings, history, addItem, clearItems, |
