SurfSense/surfsense_web/app/auth/callback/loading.tsx

12 lines
325 B
TypeScript
Raw Normal View History

"use client";
import { useGlobalLoadingEffect } from "@/hooks/use-global-loading";
export default function AuthCallbackLoading() {
// Use global loading - spinner animation won't reset when page transitions
2026-01-27 15:28:30 +05:30
useGlobalLoadingEffect(true);
// Return null - the GlobalLoadingProvider handles the loading UI
return null;
}