fix superadmin state

This commit is contained in:
Alex Holliday
2025-06-11 12:41:58 +08:00
parent bcea3a5e66
commit c0ad2dfce2
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ const withAdminCheck = (WrappedComponent) => {
if (response?.data?.data === true) {
navigate("/login");
} else {
setSuperAdminExists(true);
setSuperAdminExists(false);
}
})
.catch((error) => {

View File

@@ -4,7 +4,7 @@ import NotFound from "../Pages/NotFound";
// Auth
import AuthLogin from "../Pages/Auth/Login";
import AuthRegister from "../Pages/Auth/Register/Register";
import AuthRegister from "../Pages/Auth/Register/";
import AuthForgotPassword from "../Pages/Auth/ForgotPassword";
import AuthCheckEmail from "../Pages/Auth/CheckEmail";
import AuthSetNewPassword from "../Pages/Auth/SetNewPassword";