浏览代码

chore: fix mobile scroll

Yifei Zhang 2 年之前
父节点
当前提交
8d34b0f454
共有 1 个文件被更改,包括 1 次插入0 次删除
  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);
     }
   });