quick auto-scroll fix

This commit is contained in:
Rob Colbert 2026-05-19 14:29:58 -04:00
parent d47ef96916
commit 9aaacead42

View File

@ -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;