Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ...
- case 'LOGIN':
- case 'REGISTER':
- return {
- ...state,
- redirectTo: action.error ? null : '/',
- token: action.error ? null : action.payload.user.token,
- currentUser: action.error ? null : action.payload.user,
- };
- // ...
Advertisement
Add Comment
Please, Sign In to add comment