diff --git a/lib/manager/actions/user.js b/lib/manager/actions/user.js index 0dcddc83f..b165abbcb 100644 --- a/lib/manager/actions/user.js +++ b/lib/manager/actions/user.js @@ -257,7 +257,9 @@ export function userLogout () { export function logout () { return function (dispatch, getState) { - dispatch(userLogout()) + // dispatch(userLogout()) // disabled to avoid console errors on logout + // TODO: determine if any further action is needed to clear store on user + // logout. If not, completely remove USER_LOGGED_OUT from code getState().user.auth0.logout() } }