mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-12 07:01:09 -07:00
refactor: Update Card component to adjust colors for Executing status
This commit is contained in:
@@ -50,7 +50,7 @@ export const Card: React.FC<CardProps> = ({
|
||||
case ToolCallStatus.Canceled:
|
||||
return { border: theme.status.warning, text: theme.status.warning };
|
||||
case ToolCallStatus.Executing:
|
||||
return { border: theme.border.default, text: theme.status.success };
|
||||
return { border: theme.border.default, text: theme.text.accent };
|
||||
default:
|
||||
checkExhaustive(status);
|
||||
return { border: theme.border.default, text: theme.text.primary };
|
||||
|
||||
Reference in New Issue
Block a user