I have the same error in reactive reduction.
the problem was that when I add a new product on the add / product page and click the "Back" button, this error is displayed on the component of the home page
home_container.js: 8 Uncaught TypeError: products.product.map is not a function
renderItems = (products) => ( products.product ? products.product.map(item => ( <ProductItem {...item} key = { item._id } /> )) : null )
decision
I pass {} instead of [] from the host server
Thus, if you have this type of error in response-redux, then first check what you are passing from the server to this field, and also check the reducers of this particular component.
source share