[bugfix/TMP] Fix the bug that message logs hasn't scrolled down even when it should be.(like when the logs update speed fast)

This commit is contained in:
Sakamoto Shiina
2024-12-22 17:57:12 +09:00
parent 50f3c85548
commit 55b9bfd69c

View File

@@ -14,7 +14,8 @@ export const LogBox = () => {
useLayoutEffect(() => {
store.log_box_ref = log_container_ref;
if (!is_scrolling) {
scrollToBottom(store.log_box_ref, true);
scrollToBottom(store.log_box_ref);
// scrollToBottom(store.log_box_ref, true); [Fix me]
}
}, [currentMessageLogs.data]);