fix: infinite loop in home page (#1773)

Fix infinite loop in home page

Co-authored-by: Athurg Feng <athurg@gooth.org>
This commit is contained in:
Athurg Gooth 2023-05-30 18:54:58 +08:00 committed by GitHub
parent 97df1a82c7
commit 7e4d71cf58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,6 +119,7 @@ const MemoList = () => {
}
if (sortedMemos.length < DEFAULT_MEMO_LIMIT) {
handleFetchMoreClick();
return;
}
const observer = new IntersectionObserver(([entry]) => {
if (entry.isIntersecting) {