diff options
| author | Fuwn <[email protected]> | 2024-10-28 15:32:46 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-28 15:32:46 -0700 |
| commit | 39b677404558ae3b7eb34e818d7ca308f62f9cb0 (patch) | |
| tree | 7f19fca39ecd4237e3c0d1aef2d8e9fa3cec7845 /src/lib/Utility/oauth.ts | |
| parent | feat(graphql): paged badges query (diff) | |
| download | due.moe-svelte-5.tar.xz due.moe-svelte-5.zip | |
feat: update to svelte 5svelte-5
Diffstat (limited to 'src/lib/Utility/oauth.ts')
| -rw-r--r-- | src/lib/Utility/oauth.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Utility/oauth.ts b/src/lib/Utility/oauth.ts index 78f52bfa..bd824b75 100644 --- a/src/lib/Utility/oauth.ts +++ b/src/lib/Utility/oauth.ts @@ -47,5 +47,5 @@ export const callback = async (options: CallbackOptions) => { } ); - throw redirect(303, options.redirect ?? '/'); + redirect(303, options.redirect ?? '/'); }; |