diff options
Diffstat (limited to 'src/lib/Landing.svelte')
| -rw-r--r-- | src/lib/Landing.svelte | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/Landing.svelte b/src/lib/Landing.svelte index bddd16df..51167432 100644 --- a/src/lib/Landing.svelte +++ b/src/lib/Landing.svelte @@ -41,7 +41,9 @@ onMount(() => { { threshold: 0.1 } ); - document.querySelectorAll('.landing-section').forEach((el) => intersectionObserver.observe(el)); + document.querySelectorAll('.landing-section').forEach((el) => { + intersectionObserver.observe(el); + }); calculateLimit(); |