diff --git a/components/Chat/Chat.tsx b/components/Chat/Chat.tsx index fd2b71d..331846f 100644 --- a/components/Chat/Chat.tsx +++ b/components/Chat/Chat.tsx @@ -19,7 +19,7 @@ export const Chat: FC = ({ model, messages, messageIsStreaming, loading, const messagesEndRef = useRef(null); const scrollToBottom = () => { - messagesEndRef.current?.scrollIntoView({ behavior: "smooth" }); + messagesEndRef.current?.scrollIntoView({ behavior: "auto" }); }; useEffect(() => {