mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
11 lines
322 B
TypeScript
11 lines
322 B
TypeScript
"use client";
|
|
|
|
import { useGlobalLoadingEffect } from "@/hooks/use-global-loading";
|
|
|
|
export default function DashboardLoading() {
|
|
// Use global loading - spinner animation won't reset when page transitions
|
|
useGlobalLoadingEffect(true);
|
|
|
|
// Return null - the GlobalLoadingProvider handles the loading UI
|
|
return null;
|
|
}
|