Skip to content

Commit a7b7536

Browse files
committed
🤖 Move emoji to left of status dot
Place emoji before the streaming indicator dot for better visual hierarchy. Generated with `cmux`
1 parent aa2863c commit a7b7536

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/AgentStatusIndicator.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ export const AgentStatusIndicator: React.FC<AgentStatusIndicatorProps> = ({
8787
</div>
8888
) : null;
8989

90-
// Container holds both dot and emoji
90+
// Container holds both emoji and dot (emoji on left)
9191
const indicator = (
9292
<div className={cn("flex items-center gap-1.5", className)} onClick={handleClick}>
93-
{dot}
9493
{emoji}
94+
{dot}
9595
</div>
9696
);
9797

0 commit comments

Comments
 (0)