Refactor hasToken()

This commit is contained in:
Alex Gleason 2020-04-29 19:13:05 -05:00
parent 5c0c1932e0
commit bc3bb47829
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -9,10 +9,7 @@ export const ME_FETCH_SKIP = 'ME_FETCH_SKIP';
export const ME_PATCH_REQUEST = 'ME_PATCH_REQUEST';
export const ME_PATCH_FAIL = 'ME_PATCH_FAIL';
function hasToken(getState) {
const accessToken = getState().getIn(['auth', 'user', 'access_token']);
return Boolean(accessToken);
}
const hasToken = getState => getState().hasIn(['auth', 'user', 'access_token']);
export function fetchMe() {
return (dispatch, getState) => {