diff --git a/src/routes/weather/+page.ts b/src/routes/weather/+page.ts index 6b8351d..0486d7d 100644 --- a/src/routes/weather/+page.ts +++ b/src/routes/weather/+page.ts @@ -1,6 +1,6 @@ import { redirect } from '@sveltejs/kit'; -import type { PageLoad } from './$types'; +import type { PageLoad } from '$types'; export const prerender = true; diff --git a/src/routes/weather/week/+page.ts b/src/routes/weather/week/+page.ts index b2c878b..e2a912f 100644 --- a/src/routes/weather/week/+page.ts +++ b/src/routes/weather/week/+page.ts @@ -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; diff --git a/src/routes/weather/week/[location]/+page.svelte b/src/routes/weather/week/[location]/+page.svelte index 7889c14..a21237f 100644 --- a/src/routes/weather/week/[location]/+page.svelte +++ b/src/routes/weather/week/[location]/+page.svelte @@ -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';