From d8671b71a72c7b47f8b9dca1da53bc5014f05ea3 Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Tue, 21 Oct 2025 18:30:19 -0300 Subject: [PATCH] Put animate on messages --- frontend/src/app/chat/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 /> )}