Skip to content

Commit fc159a1

Browse files
committed
fix(chat): keep a stable Thinking… label instead of cycling phase text
Greptile flagged that phase text repeatedly re-announces to assistive tech during a single pending stream; a static label avoids the repeated live-region updates while keeping the gooey shape morph.
1 parent e6b6075 commit fc159a1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/special-tags

apps/sim/app/workspace/[workspaceId]/home/components/message-content/components/special-tags/special-tags.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ export function SpecialTags({
430430
export function PendingTagIndicator() {
431431
return (
432432
<div className='animate-stream-fade-in py-2'>
433-
<ThinkingLoader size={20} startVariant='corners' phase labelRatio={0.7} />
433+
<ThinkingLoader size={20} startVariant='corners' label='Thinking…' labelRatio={0.7} />
434434
</div>
435435
)
436436
}

0 commit comments

Comments
 (0)