From 5669c05fa260aaf936c3236eaf6e07ee1fe634df Mon Sep 17 00:00:00 2001 From: accius Date: Fri, 30 Jan 2026 00:09:05 -0500 Subject: [PATCH] Update index.html --- public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/index.html b/public/index.html index 2e3f692..5adc48e 100644 --- a/public/index.html +++ b/public/index.html @@ -426,7 +426,7 @@ } }; fetchData(); - const interval = setInterval(fetchData, CONFIG.refreshIntervals.spaceWeather); + const interval = setInterval(fetchData, DEFAULT_CONFIG.refreshIntervals.spaceWeather); return () => clearInterval(interval); }, []); @@ -466,7 +466,7 @@ finally { setLoading(false); } }; fetchPOTA(); - const interval = setInterval(fetchPOTA, CONFIG.refreshIntervals.pota); + const interval = setInterval(fetchPOTA, DEFAULT_CONFIG.refreshIntervals.pota); return () => clearInterval(interval); }, []);