diff --git a/app/components/home.tsx b/app/components/home.tsx index 70b92633f..eece6c67b 100644 --- a/app/components/home.tsx +++ b/app/components/home.tsx @@ -301,7 +301,7 @@ export function Chat(props: { showSideBar?: () => void }) { const dom = latestMessageRef.current; if (dom && !isIOS() && autoScroll) { dom.scrollIntoView({ - behavior: "smooth", + behavior: "auto", block: "end", }); }