fix(web):remove token callback handling

This commit is contained in:
Anish Sarkar 2026-06-24 03:55:40 +05:30
parent 9fedd0a81f
commit c8ac7d3fa6
4 changed files with 24 additions and 94 deletions

View file

@ -1,14 +0,0 @@
"use client";
import { Suspense } from "react";
import TokenHandler from "@/components/TokenHandler";
export default function AuthCallbackPage() {
// Suspense fallback returns null - the GlobalLoadingProvider handles the loading UI
// TokenHandler uses useGlobalLoadingEffect to show the loading screen
return (
<Suspense fallback={null}>
<TokenHandler redirectPath="/dashboard" tokenParamName="token" />
</Suspense>
);
}