refactor: Update Card component to adjust colors for Executing status

This commit is contained in:
Mark McLaughlin
2026-02-10 12:00:22 -08:00
parent 85446fdfd3
commit 9c91f25d62

View File

@@ -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 };