fix: pre-emptive render without valid user
parent
b7429e47b0
commit
c96b09bb81
|
|
@ -13,7 +13,7 @@ interface Props {
|
|||
export const CheckAuth = (props: Props) => {
|
||||
const auth = useApplicationState().auth;
|
||||
const client = useClient();
|
||||
const ready = auth.isLoggedIn() && typeof client?.user !== "undefined";
|
||||
const ready = auth.isLoggedIn() && !!client?.user;
|
||||
|
||||
if (props.auth && !ready) {
|
||||
return <Redirect to="/login" />;
|
||||
|
|
|
|||
Loading…
Reference in New Issue