header rekated fixes

This commit is contained in:
IGNY8 VPS (Salman)
2025-12-27 05:33:05 +00:00
parent fd6e7eb2dd
commit 726d945bda
15 changed files with 414 additions and 232 deletions

View File

@@ -7,6 +7,7 @@ import ProtectedRoute from "./components/auth/ProtectedRoute";
import AdminRoute from "./components/auth/AdminRoute";
import GlobalErrorDisplay from "./components/common/GlobalErrorDisplay";
import LoadingStateMonitor from "./components/common/LoadingStateMonitor";
import { PageProvider } from "./context/PageContext";
import { useAuthStore } from "./store/authStore";
import { useModuleStore } from "./store/moduleStore";
@@ -118,7 +119,7 @@ export default function App() {
}, [loadModuleSettings]);
return (
<>
<PageProvider>
<GlobalErrorDisplay />
<LoadingStateMonitor />
<HelmetProvider>
@@ -265,6 +266,6 @@ export default function App() {
</Routes>
</Suspense>
</HelmetProvider>
</>
</PageProvider>
);
}