chore: file formatting
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import {Navigate, Outlet} from "react-router-dom";
|
||||
import {useAuth} from "@/context/AuthContext";
|
||||
import { Navigate, Outlet } from 'react-router-dom';
|
||||
import { useAuth } from '@/context/AuthContext';
|
||||
|
||||
export default function PublicRoute() {
|
||||
const {token} = useAuth();
|
||||
const { token } = useAuth();
|
||||
return token ? <Navigate to="/dashboard" replace /> : <Outlet />;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user