Merge branch 'style/loading' into 'dev'

Update loading on auth

See merge request sae-but2/2025-26/gestion-benevoles-association/Frontend!89
This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-03-13 16:21:08 +00:00
+4 -1
View File
@@ -5,13 +5,16 @@ import Background from "./components/Background/Background.jsx";
import { Navigate } from "react-router";
import { useContext} from "react";
import { AuthContext } from "./contexts/Auth/AuthContext.js";
import Loading from "./components/ui/Loading/Loading.tsx";
function Layout(){
const { user, loading } = useContext(AuthContext);
if (loading) return <p>Loading</p>;
if (loading) return <Background>
<Loading />
</Background>;
if (!user) return <Navigate to="/login" />;
if(user && user.validate === 0) return <Navigate to="/error/validation" />;