Pārlūkot izejas kodu

chore: fix mobile scroll

Yifei Zhang 2 gadi atpakaļ
vecāks
revīzija
8d34b0f454
1 mainītis faili ar 1 papildinājumiem un 0 dzēšanām
  1. 1 0
      app/components/chat.tsx

+ 1 - 0
app/components/chat.tsx

@@ -286,6 +286,7 @@ function useScrollToBottom() {
     const dom = scrollRef.current;
     if (dom && autoScroll) {
       setTimeout(() => (dom.scrollTop = dom.scrollHeight), 1);
+      setAutoScroll(false);
     }
   });