We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14919b0 commit 623b15dCopy full SHA for 623b15d
apps/dashboard/app/(main)/websites/[id]/agent/_components/agent-messages.tsx
@@ -139,7 +139,7 @@ function renderMessagePart(
139
) {
140
const key = `${messageId}-${partIndex}`;
141
const isCurrentlyStreaming = isLastMessage && isStreaming;
142
- const mode = role === "user" ? "static" : "streaming";
+ const mode = (role === "user" || !isCurrentlyStreaming) ? "static" : "streaming";
143
144
// Handle grouped tool calls
145
if (Array.isArray(part)) {
0 commit comments