Browse Source

Load only one element at a time on scroll

master
buttercat1791 10 months ago
parent
commit
e9aa513d5f
  1. 2
      src/lib/components/Publication.svelte

2
src/lib/components/Publication.svelte

@ -138,7 +138,7 @@ @@ -138,7 +138,7 @@
observer = new IntersectionObserver((entries) => {
entries.forEach((entry) => {
if (entry.isIntersecting && !isLoading) {
loadMore(4);
loadMore(1);
}
});
}, { threshold: 0.5 });

Loading…
Cancel
Save