From 9aaacead42f59c629e27ab1c9573eb2d57ff0bba Mon Sep 17 00:00:00 2001 From: Rob Colbert Date: Tue, 19 May 2026 14:29:58 -0400 Subject: [PATCH] quick auto-scroll fix --- gadget-code/frontend/src/pages/ChatSessionView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gadget-code/frontend/src/pages/ChatSessionView.tsx b/gadget-code/frontend/src/pages/ChatSessionView.tsx index af9c28c..b45dd90 100644 --- a/gadget-code/frontend/src/pages/ChatSessionView.tsx +++ b/gadget-code/frontend/src/pages/ChatSessionView.tsx @@ -1220,7 +1220,7 @@ export default function ChatSessionView() { }, [isProcessing, showToast, handleCancel]); const scrollToBottom = () => { - messagesEndRef.current?.scrollIntoView({ behavior: 'smooth' }); + messagesEndRef.current?.scrollIntoView({ behavior: 'instant' }); }; const sessionLocked = startupState === SessionStartupState.Ready;