降低加载更多延迟时间

This commit is contained in:
xianyi
2025-12-24 13:59:13 +08:00
parent 2fd1bfb4e8
commit 31f525cf69

View File

@@ -101,7 +101,7 @@ export const ExamSection = ({
setTimeout(() => {
setDisplayCount((prev) => Math.min(prev + LOAD_MORE_COUNT, filteredClients.length));
setIsLoadingMore(false);
}, 300);
}, 0);
}
}
},