File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
packages/cli/src/ui/components Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ export const Footer: React.FC = () => {
170170 ) }
171171 { ! showErrorDetails && errorCount > 0 && (
172172 < Box paddingLeft = { 1 } flexDirection = "row" >
173- < Text color = { theme . ui . symbol } > | </ Text >
173+ < Text color = { theme . ui . comment } > | </ Text >
174174 < ConsoleSummaryDisplay errorCount = { errorCount } />
175175 </ Box >
176176 ) }
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ export const ToolGroupMessage: React.FC<ToolGroupMessageProps> = ({
5151 ( t ) => t . name === SHELL_COMMAND_NAME || t . name === SHELL_NAME ,
5252 ) ;
5353 const borderColor =
54- isShellCommand || isEmbeddedShellFocused
54+ ( isShellCommand && hasPending ) || isEmbeddedShellFocused
5555 ? theme . ui . symbol
5656 : hasPending
5757 ? theme . status . warning
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export const UserShellMessage: React.FC<UserShellMessageProps> = ({ text }) => {
1818
1919 return (
2020 < Box >
21- < Text color = { theme . text . link } > $ </ Text >
21+ < Text color = { theme . ui . symbol } > $ </ Text >
2222 < Text color = { theme . text . primary } > { commandToDisplay } </ Text >
2323 </ Box >
2424 ) ;
You can’t perform that action at this time.
0 commit comments