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