Scroll to bottom of chat when any drawer closes

remotes/1693176582716663532/tmp_refs/heads/watchparty
Outrun Colors 2022-09-24 22:28:09 -05:00
parent a6e9d6d42d
commit 4a24cdfedf
No known key found for this signature in database
GPG Key ID: 0426976DCEFE6073
2 changed files with 8 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "chat",
"version": "0.0.21",
"version": "0.0.22",
"main": "./src/index.tsx",
"license": "MIT",
"dependencies": {

View File

@ -58,6 +58,13 @@ function AppInner() {
contentWrapper.current.scrollTop = contentWrapper.current.scrollHeight;
}
}, [messages]);
useEffect(() => {
if (!open) {
// Scroll to the bottom after any drawer closes.
contentWrapper.current.scrollTop = contentWrapper.current.scrollHeight;
}
}, [open]);
return (
<div className="App" ref={dropRef}>