Home Page Customization #1

Merged
ameye merged 1 commits from siginup-customization-and-setup into master 2023-10-17 06:03:25 +00:00
+1 -1
View File
@@ -10,7 +10,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("/authentication/sign-in/");