Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ...
- // LOGIN => got login response => turn off loading state, put errors in state
- case 'LOGIN':
- case 'REGISTER':
- return {
- ...state,
- inProgress: false,
- errors: action.error ? action.payload.errors : null
- };
- // ...
Advertisement
Add Comment
Please, Sign In to add comment