diff --git a/frontend/src/routes/interaction/error/+page.ts b/frontend/src/routes/interaction/error/+page.ts index 2a995a3d..30c3ef89 100644 --- a/frontend/src/routes/interaction/error/+page.ts +++ b/frontend/src/routes/interaction/error/+page.ts @@ -1,7 +1,7 @@ import type { PageLoad } from './$types'; export const load: PageLoad = async ({ url }) => { - const error = url.searchParams.get('error') ?? 'An unknown error occured.'; + const error = url.searchParams.get('error') ?? 'An unknown error occurred.'; return { error