I have a react component which is connected to a parent container. The container has mapStateToProps. I have a console log in the container. The props are updating. I can SEE the prop updating in the component/child.
componentDidUpdate is not being called. I have no idea how a render could possibly be called without componentDidUpdate being called. But that is happening. I see the component update on my screen, I have the props console.logged and they are updating. But componentDidUpdate is not. I feel like I'm crazy.
Has anyone experienced this before??