Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(site): match pinned indicator font size and text to default
The preference query loads async, so the first render falls through
to the default mode ('Thinking...' at text-[13px]). Once the query
resolves with 'pinned', the indicator switched to 'Thinking' at
text-sm (14px), causing a visible font jump.

Match PinnedThinkingIndicator to the same text ('Thinking...') and
font size (text-[13px] leading-relaxed) as the default StatusPlaceholder
so the transition is invisible.
  • Loading branch information
tracyjohnsonux committed May 12, 2026
commit a26040d5cf093470a2ca7953559ccf72f73bc869
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ const PinnedThinkingIndicator: FC<{ fading?: boolean }> = ({
className="flex w-full items-center gap-2 border-t border-border/50 pt-2 text-content-secondary transition-opacity duration-300"
style={{ opacity: fading ? 0 : 1 }}
>
<Shimmer as="span" className="text-sm">
Thinking
<Shimmer as="span" className="text-[13px] leading-relaxed">
Thinking...
</Shimmer>
</div>
);
Expand Down
Loading