Changed admin

This commit was merged in pull request #6.
This commit is contained in:
2023-10-20 06:51:21 -07:00
parent 39fe9eaaa2
commit b132670152
+1 -1
View File
@@ -11,7 +11,7 @@ const AuthRoute = ({ children }) => {
const router = useRouter();
useEffect(() => {
const isAuthenticated = true; // In a real application, this would be determined based on the user's authentication status.
const isAuthenticated = false; // In a real application, this would be determined based on the user's authentication status.
if (!isAuthenticated) {
router.push("/auth/sign-in");