Merge branch 'main' into refactor-weather-weekly

This commit is contained in:
terraputix
2026-02-15 15:12:53 +01:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { redirect } from '@sveltejs/kit';
import type { PageLoad } from './$types';
import type { PageLoad } from '$types';
export const prerender = true;
+1 -1
View File
@@ -6,7 +6,7 @@ import { storedLocation } from '$lib/stores/settings';
import { geoLocationNameToRoute } from '$lib/utils/meteo';
import type { PageLoad } from './$types';
import type { PageLoad } from '$types';
export const prerender = true;
@@ -8,7 +8,7 @@
import { storedLocation } from '$lib/stores/settings';
import { urlHashStore } from '$lib/stores/url-hash-store';
import { pad } from '$lib/utils/index.js';
import { pad } from '$lib/utils';
import { Label } from '$lib/components/ui/label';
import * as Select from '$lib/components/ui/select';