SurfSense/surfsense_web/app/dashboard/loading.tsx

12 lines
322 B
TypeScript
Raw Normal View History

"use client";
import { useGlobalLoadingEffect } from "@/hooks/use-global-loading";
export default function DashboardLoading() {
// 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;
}