first load auto scroll to bottom

This commit is contained in:
Tycho Luyben
2023-03-19 07:34:13 +00:00
parent 1d0c334f22
commit d8a497eca1

View File

@@ -35,12 +35,14 @@ export default function ChatPage(props: any) {
const { id } = useParams();
const context = useAppContext();
let firstLoad = true;
useEffect(() => {
if (props.share || !context.currentChat.chatLoadedAt) {
return;
}
const shouldScroll = (Date.now() - context.currentChat.chatLoadedAt) > 5000;
const shouldScroll = (Date.now() - context.currentChat.chatLoadedAt) > 5000 || firstLoad;
firstLoad = false;
if (!shouldScroll) {
return;