DEV Community

Discussion on: Fetching data from an api using React/Redux

Collapse
 
jimmymorris profile image
Jimmy Morris

This was a great article, I really appreciate the practical example, too many times it's not so.

One bit of feedback, I noticed in your fetchProducts.js file you have a typo:

dispatch(fetchProductsSuccess(res.products);

you're missing a closing parenthesis at the end of the dispatch

dispatch(fetchProductsSuccess(res.products));