ui(cli): reduce length of Ctrl+O hint (#20490)

This commit is contained in:
Jarrod Whelan
2026-02-26 16:57:38 -08:00
committed by GitHub
parent 049d48ef60
commit 085441352b
2 changed files with 7 additions and 3 deletions

View File

@@ -78,7 +78,7 @@ export const ToastDisplay: React.FC = () => {
const action = uiState.constrainHeight ? 'show more' : 'collapse';
return (
<Text color={theme.text.accent}>
Press Ctrl+O to {action} lines for the most recent response
Ctrl+O to {action} lines of the last response
</Text>
);
}