fix(cli):change the placeholder of input during the shell mode (#15135)

Co-authored-by: Gal Zahavi <38544478+galz10@users.noreply.github.com>
This commit is contained in:
JAYADITYA
2025-12-19 23:37:45 +05:30
committed by GitHub
parent 419464a8c2
commit 181da07dd9

View File

@@ -173,7 +173,9 @@ export const Composer = () => {
placeholder={
vimEnabled
? " Press 'i' for INSERT mode and 'Esc' for NORMAL mode."
: ' Type your message or @path/to/file'
: uiState.shellModeActive
? ' Type your shell command'
: ' Type your message or @path/to/file'
}
setQueueErrorMessage={uiActions.setQueueErrorMessage}
streamingState={uiState.streamingState}