diff --git a/src/components/ChatViewer.tsx b/src/components/ChatViewer.tsx index 2b55d12..8857dcd 100644 --- a/src/components/ChatViewer.tsx +++ b/src/components/ChatViewer.tsx @@ -1085,10 +1085,10 @@ export function ChatViewer({ data={messagesWithMarkers} initialTopMostItemIndex={messagesWithMarkers.length - 1} followOutput={() => { - // Skip smooth scroll on initial load to avoid slow scroll animation + // Use instant scroll on initial load to avoid slow scroll animation if (!isInitialScrollDone.current) { isInitialScrollDone.current = true; - return false; + return "auto"; // Instant scroll (no animation) } return "smooth"; }}