diff --git a/frontend/src/app/chat/page.tsx b/frontend/src/app/chat/page.tsx
index 98109c39..dc85f43e 100644
--- a/frontend/src/app/chat/page.tsx
+++ b/frontend/src/app/chat/page.tsx
@@ -1183,7 +1183,7 @@ function ChatPage() {
className="space-y-6 group"
>
{message.role === "user" && (
-
+
)}
{message.role === "assistant" && (
@@ -1195,6 +1195,7 @@ function ChatPage() {
onToggle={toggleFunctionCall}
showForkButton={endpoint === "chat"}
onFork={(e) => handleForkConversation(index, e)}
+ animate={false}
/>
)}
@@ -1208,6 +1209,7 @@ function ChatPage() {
messageIndex={messages.length}
expandedFunctionCalls={expandedFunctionCalls}
onToggle={toggleFunctionCall}
+ delay={0.4}
isStreaming
/>
)}