Browse Source

fix: infinite scroll stuck on loading issue

Timothy J. Baek 11 months ago
parent
commit
d8c39569be
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/components/common/Loader.svelte

+ 1 - 1
src/lib/components/common/Loader.svelte

@@ -17,7 +17,7 @@
 			{
 				root: null, // viewport
 				rootMargin: '0px',
-				threshold: 1.0 // When 100% of the loader is visible
+				threshold: 0.1 // When 10% of the loader is visible
 			}
 		);