Explorer - fetch stats on first load

This commit is contained in:
Justin Schuldt 2022-02-28 17:15:00 -06:00
parent 60363dd3d1
commit d26e2b85b1
1 changed files with 2 additions and 1 deletions

View File

@ -112,7 +112,8 @@ const IndexPage = ({ location }: PageProps) => {
}
useEffect(() => {
statsInterval = setInterval(fetchStats, 30000)
fetchStats() // fetchStats on first load
statsInterval = setInterval(fetchStats, 30000) // fetch every 30 seconds
gsap.registerPlugin(ScrollTrigger);