Skip to content

Commit def0f4e

Browse files
committed
third
1 parent 3a60252 commit def0f4e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { redirect } from "@sveltejs/kit";
2+
import type { PageLoad } from "./$types";
3+
4+
let firstVisit = true;
5+
6+
export const load: PageLoad = () => {
7+
// Redirect FAQ to external support site using SvelteKit's redirect
8+
throw redirect(307, "https://identitysupport.dfinity.org/hc/en-us");
9+
};

0 commit comments

Comments
 (0)