fix: route redirection issue

This commit is contained in:
Juan Di Toro 2024-03-19 23:41:45 +01:00
parent dec1fd29f5
commit 9a8a7ee978
1 changed files with 12 additions and 17 deletions

View File

@ -1,24 +1,19 @@
import {useGo, useIsAuthenticated} from "@refinedev/core";
import {useEffect} from "react";
import { useGo, useIsAuthenticated } from "@refinedev/core";
export default function Index() {
const {isLoading, data} = useIsAuthenticated();
const { isLoading, data } = useIsAuthenticated();
const go = useGo();
const go = useGo();
useEffect(() => {
if (!isLoading) {
if (data?.authenticated) {
go({to: "/dashboard", type: "replace"});
} else {
go({to: "/login", type: "replace"});
}
}
}, [isLoading, data]);
if (isLoading) {
return <>Checking Login Status</>;
}
if (isLoading) {
return <>Checking Login Status</> || null;
}
if (data?.authenticated) {
go({ to: "/dashboard", type: "replace" });
} else {
go({ to: "/login", type: "replace" });
}
return (<>Redirecting</>) || null;
return <>Redirecting</>;
}