fix(frontend): typo in fallback error message in interaction error page (#1776)

This commit is contained in:
Samuel K Quansah
2026-09-21 23:08:10 +02:00
committed by GitHub
parent 3516ec6940
commit 23c4825abd
@@ -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