diff --git a/client/pages/Staff.tsx b/client/pages/Staff.tsx index f21bfe5d..1dccdf36 100644 --- a/client/pages/Staff.tsx +++ b/client/pages/Staff.tsx @@ -20,7 +20,7 @@ export default function Staff() { useEffect(() => { if (!loading && user) { - navigate("/staff/dashboard", { replace: true }); + navigate("/admin", { replace: true }); } }, [user, loading, navigate]);