mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-12 22:31:12 -07:00
update text:
This commit is contained in:
@@ -385,7 +385,7 @@ describe('Composer', () => {
|
||||
|
||||
const { lastFrame } = renderComposer(uiState);
|
||||
|
||||
expect(lastFrame()).toContain('Clearing input is now Ctrl + C');
|
||||
expect(lastFrame()).toContain('Clearing input is Ctrl + C');
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
@@ -45,9 +45,7 @@ export const StatusDisplay: React.FC<StatusDisplayProps> = ({
|
||||
}
|
||||
|
||||
if (uiState.showEscapePrompt) {
|
||||
return (
|
||||
<Text color={theme.text.secondary}>Clearing input is now Ctrl + C</Text>
|
||||
);
|
||||
return <Text color={theme.text.secondary}>Clearing input is Ctrl + C</Text>;
|
||||
}
|
||||
|
||||
if (uiState.queueErrorMessage) {
|
||||
|
||||
@@ -10,7 +10,7 @@ exports[`StatusDisplay > renders ContextSummaryDisplay by default 1`] = `"Mock C
|
||||
|
||||
exports[`StatusDisplay > renders Ctrl+D prompt 1`] = `"Press Ctrl+D again to exit."`;
|
||||
|
||||
exports[`StatusDisplay > renders Escape prompt 1`] = `"Clearing input is now Ctrl + C"`;
|
||||
exports[`StatusDisplay > renders Escape prompt 1`] = `"Clearing input is Ctrl + C"`;
|
||||
|
||||
exports[`StatusDisplay > renders HookStatusDisplay when hooks are active 1`] = `"Mock Hook Status Display"`;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user