Skip to content

Commit 04e163b

Browse files
committed
🤖 Fix font size consistency in status_set tool header
Removed 'text-sm' class from message span to match other tool calls. Other tool headers don't explicitly set text-sm, they inherit the default size from ToolHeader. Generated with `cmux`
1 parent 1be5f2d commit 04e163b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/tools/StatusSetToolCall.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const StatusSetToolCall: React.FC<StatusSetToolCallProps> = ({
3232
<span>{args.emoji}</span>
3333
<Tooltip>status_set</Tooltip>
3434
</TooltipWrapper>
35-
<span className="text-sm text-muted-foreground">{args.message}</span>
35+
<span className="text-muted-foreground">{args.message}</span>
3636
<StatusIndicator status={status}>{statusDisplay}</StatusIndicator>
3737
</ToolHeader>
3838

0 commit comments

Comments
 (0)