fix(chat): tweak auto scrolling on message logic to reduce scroll to bottom button showing

This commit is contained in:
Gabe Kangas
2023-05-07 20:29:29 -07:00
parent f540290a2c
commit a9a2ad5487

View File

@@ -211,7 +211,7 @@ export const ChatContainer: FC<ChatContainerProps> = ({
}); });
setIsAtBottom(true); setIsAtBottom(true);
setShowScrollToBottomButton(false); setShowScrollToBottomButton(false);
}, 100); }, 150);
}; };
// This is a hack to force a scroll to the very bottom of the chat messages // This is a hack to force a scroll to the very bottom of the chat messages