diff --git a/app/components/chat.tsx b/app/components/chat.tsx
index 50358f7f..0f1bad64 100644
--- a/app/components/chat.tsx
+++ b/app/components/chat.tsx
@@ -480,7 +480,7 @@ export function Chat() {
   const navigate = useNavigate();
 
   const onChatBodyScroll = (e: HTMLElement) => {
-    const isTouchBottom = e.scrollTop + e.clientHeight >= e.scrollHeight - 100;
+    const isTouchBottom = e.scrollTop + e.clientHeight >= e.scrollHeight - 10;
     setHitBottom(isTouchBottom);
   };