message modal - scroll to bottom

on the initial loading of messages, scroll to the bottom of the
message modal.
This commit is contained in:
Nuwan 2024-10-23 08:22:06 +05:30
parent c1a2e76186
commit 541bca6b28
1 changed files with 4 additions and 0 deletions

View File

@ -134,7 +134,11 @@ const JKMessageModal = props => {
useEffect(() => {
if (offset !== 0) {
fetchMessages();
if(offset === 0){
goToBottom();
}
}
}, [offset]);
return (