fix(auth): remove redundant token storage write

This commit is contained in:
너이름 2026-05-11 06:25:40 +09:00
parent c8374e6c5b
commit 935cd7b7c9
2 changed files with 2 additions and 10 deletions

View file

@ -8,11 +8,7 @@ export default function AuthCallbackPage() {
// TokenHandler uses useGlobalLoadingEffect to show the loading screen
return (
<Suspense fallback={null}>
<TokenHandler
redirectPath="/dashboard"
tokenParamName="token"
storageKey="surfsense_bearer_token"
/>
<TokenHandler redirectPath="/dashboard" tokenParamName="token" />
</Suspense>
);
}