Skip to content

Commit 2b33d72

Browse files
authored
refactor: change completed agent progress color to tool color (#771)
1 parent fa10cf0 commit 2b33d72

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ui/AgentProgress/AgentProgressOverlay.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const VISIBLE_MESSAGE_LIMIT = 3;
1818

1919
const COLORS = {
2020
RUNNING: 'gray',
21-
COMPLETED: 'green',
21+
COMPLETED: UI_COLORS.TOOL,
2222
FAILED: 'red',
2323
AGENT_TYPE: 'cyan',
2424
HINT: 'gray',
@@ -98,7 +98,7 @@ export function AgentStarting({ toolUse }: AgentProgressOverlayProps) {
9898
}, [waitingForApproval]);
9999

100100
return (
101-
<Box flexDirection="column" paddingX={1}>
101+
<Box flexDirection="column">
102102
<AgentToolUse toolUse={toolUse} status="running" />
103103
<Box marginTop={SPACING.MESSAGE_MARGIN_TOP_TOOL_RESULT} paddingLeft={1}>
104104
<Text color={UI_COLORS.TOOL_RESULT}>
@@ -260,7 +260,7 @@ export function AgentCompletedResult({
260260
}, [stats, isError, content]);
261261

262262
return (
263-
<Box flexDirection="column" marginTop={1}>
263+
<Box flexDirection="column">
264264
<AgentToolUse
265265
toolUse={toolUse}
266266
status={isError ? 'failed' : 'completed'}

0 commit comments

Comments
 (0)