From 7833f8738258e0db2c1acc858e06968771053028 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 9 Jun 2025 20:24:57 -0700 Subject: deps(SvelteKit): Migrate to SvelteKit 2 --- src/routes/api/authentication/log-out/+server.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/routes/api/authentication') diff --git a/src/routes/api/authentication/log-out/+server.ts b/src/routes/api/authentication/log-out/+server.ts index 305c846f..26b5dd2c 100644 --- a/src/routes/api/authentication/log-out/+server.ts +++ b/src/routes/api/authentication/log-out/+server.ts @@ -11,5 +11,5 @@ export const GET = ({ cookies }) => { secure: false }); - throw redirect(303, root('/')); + redirect(303, root('/')); }; -- cgit v1.2.3