In my testing this fixes the redirect loop on logout

This commit is contained in:
Tom Moor
2018-02-12 22:44:43 -08:00
parent 8ebf748cf6
commit ea471b2a19
5 changed files with 6 additions and 8 deletions

View File

@ -42,17 +42,20 @@ class AuthStore {
this.user = res.data.user;
this.team = res.data.team;
});
} catch (e) {
} catch (err) {
// Failure to update user info is a non-fatal error.
console.error(err);
}
};
@action
logout = () => {
logout = async () => {
this.user = null;
this.token = null;
localForage.clear();
Cookie.remove('loggedIn', { path: '/' });
await localForage.clear();
window.location.href = BASE_URL;
};
@action