Skip to content

Commit d53b921

Browse files
committed
fix(playground): stop streaming chat bubbles from pulsing
The streaming-message bubble in the smart-dashboard chat drawer used `animate-pulse` while tokens arrived. The constant fade in/out reads as visual noise when the agent is mid-stream — especially with longer replies where it pulses for many seconds. Drop the animation; the ellipsis placeholder still communicates the loading state for empty streaming bubbles.
1 parent a077ba8 commit d53b921

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • apps/dev-playground/client/src/features/smart-dashboard/components

apps/dev-playground/client/src/features/smart-dashboard/components/chat-drawer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ function MessageBubble({ message }: { message: ChatMessage }) {
239239
isUser
240240
? "bg-primary text-primary-foreground rounded-br-sm"
241241
: "bg-muted text-foreground rounded-bl-sm"
242-
} ${message.streaming ? "animate-pulse" : ""}`}
242+
}`}
243243
>
244244
{message.content || (message.streaming ? "…" : "")}
245245
</div>

0 commit comments

Comments
 (0)