diff --git a/app/components/chat.tsx b/app/components/chat.tsx index 33ac3ac5770..03f905ecf46 100644 --- a/app/components/chat.tsx +++ b/app/components/chat.tsx @@ -354,6 +354,7 @@ export function Chat(props: { const [hitBottom, setHitBottom] = useState(false); const onChatBodyScroll = (e: HTMLElement) => { + setAutoScroll(false); const isTouchBottom = e.scrollTop + e.clientHeight >= e.scrollHeight - 20; setHitBottom(isTouchBottom); };