File tree Expand file tree Collapse file tree
src/frontend/src/routes/(needs_onboarding)/(navbar_and_footer) Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { prefetch } from '#queries/config';
22import { definePageMetaTags } from 'svelte-meta-tags' ;
33import type { PageLoad } from './$types' ;
44
5- export const load : PageLoad = async ( { parent } ) => {
5+ export const load : PageLoad = async ( { parent, fetch } ) => {
66 const { queryClient } = await parent ( ) ;
77
88 prefetch ( { queryClient : queryClient , fetch } ) ;
Original file line number Diff line number Diff line change 104104 const href = (env as Record <string , string | undefined >)[key ];
105105
106106 if (href && ! footerLinks .some ((link ) => link .href === href )) {
107- const module = await import (` @icons-pack/svelte-simple-icons/icons/${path }.svelte ` );
107+ const module = await import (
108+ ` @icons-pack/svelte-simple-icons/icons/${path }.svelte ` /* @vite-ignore */
109+ );
108110
109111 footerLinks .push ({
110112 href ,
You can’t perform that action at this time.
0 commit comments