Fixes: Infinite logout loop

This commit is contained in:
Tom Moor
2017-11-11 14:42:29 -08:00
parent ef25d6f70c
commit 25b2b2a024
2 changed files with 6 additions and 4 deletions

View File

@@ -8,8 +8,10 @@ type Props = {
auth: AuthStore,
};
const Home = observer((props: Props) => {
if (props.auth.authenticated) return <Redirect to="/dashboard" />;
const Home = observer(({ auth }: Props) => {
if (auth.authenticated) return <Redirect to="/dashboard" />;
auth.logout();
window.location.href = BASE_URL;
return null;
});