fix: auto-scroll to typing indicator in chat

This commit is contained in:
2026-01-31 18:51:02 +01:00
parent 6f0d172bf2
commit 387bb2d1ee

View File

@@ -194,6 +194,7 @@ const Chat = () => {
// Show typing indicator after delay
typingTimeoutRef.current = setTimeout(() => {
setWaitingForResponse(true);
scrollToEnd();
}, TYPING_INDICATOR_DELAY_MS);
try {