Updated logo
Added average seasonal temps compare
This commit is contained in:
fraxle
2026-07-07 13:23:08 +01:00
parent fd7ed5dfcc
commit 0b260affd7
7 changed files with 151 additions and 24 deletions
+2 -2
View File
@@ -100,7 +100,7 @@ export function useAppState() {
return localStorage.getItem('sunscope_pro') === '1';
});
const { forecast, airQuality, loading, error, now, fetchedAt, liveElev } = useForecast(location, isPro);
const { forecast, airQuality, loading, error, now, fetchedAt, liveElev, normals } = useForecast(location, isPro);
useEffect(() => { track('visit'); }, []);
@@ -617,7 +617,7 @@ export function useAppState() {
// location
location, setLocationAndSave, recentLocations,
// forecast
forecast, airQuality, loading, error, now, fetchedAt,
forecast, airQuality, loading, error, now, fetchedAt, normals,
// search
searchQuery, setSearchQuery,
searchResults, setSearchResults,