Skip to content

Instantly share code, notes, and snippets.

@197291
Created April 16, 2018 07:35
Show Gist options
  • Save 197291/0a821120cc1435eb1516d5f66fbc5d0c to your computer and use it in GitHub Desktop.
Save 197291/0a821120cc1435eb1516d5f66fbc5d0c to your computer and use it in GitHub Desktop.
import * as consts from 'redux/constants';
export default store => next => action => {
const {error} = action;
if (error && error.response && error.response.data.result === 5) {
next({ type: consts.DISPLAY_ERROR, error: error.response.data});
} else {
next(action);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment