message modal - scroll to bottom
on the initial loading of messages, scroll to the bottom of the message modal.
This commit is contained in:
parent
c1a2e76186
commit
541bca6b28
|
|
@ -134,7 +134,11 @@ const JKMessageModal = props => {
|
|||
useEffect(() => {
|
||||
if (offset !== 0) {
|
||||
fetchMessages();
|
||||
if(offset === 0){
|
||||
goToBottom();
|
||||
}
|
||||
}
|
||||
|
||||
}, [offset]);
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in New Issue