Skip to content

Commit 425f162

Browse files
committed
🤖 Fix Tailwind class order in StatusSetToolCall
Move italic class after text-muted-foreground to satisfy tailwindcss/classnames-order rule. Generated with `cmux`
1 parent c4ec071 commit 425f162

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
@@ -24,7 +24,7 @@ export const StatusSetToolCall: React.FC<StatusSetToolCallProps> = ({
2424
<span>{args.emoji}</span>
2525
<Tooltip>status_set</Tooltip>
2626
</TooltipWrapper>
27-
<span className="italic text-muted-foreground">{args.message}</span>
27+
<span className="text-muted-foreground italic">{args.message}</span>
2828
<StatusIndicator status={status}>{statusDisplay}</StatusIndicator>
2929
</ToolHeader>
3030
</ToolContainer>

0 commit comments

Comments
 (0)