We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
const initState = {} const projectReducer = (state = initState, action) => { switch (action.type) { case 'CREATE_PROJECT_SUCCESS': console.log('create project success'); return state; case 'CREATE_PROJECT_ERROR': console.log('create project error'); return state; default: return state; } };
export default projectReducer;
the only thing that gets console logged is create project error. Should this be the case?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
const initState = {}
const projectReducer = (state = initState, action) => {
switch (action.type) {
case 'CREATE_PROJECT_SUCCESS':
console.log('create project success');
return state;
case 'CREATE_PROJECT_ERROR':
console.log('create project error');
return state;
default:
return state;
}
};
export default projectReducer;
the only thing that gets console logged is create project error. Should this be the case?
The text was updated successfully, but these errors were encountered: