Render-to-cause chains
Why did this component re-render 14 times? Trace it backward through the dependency graph to the exact state mutation. Not a guess — the actual render line at the moment it happened.
Component re-rendered 14 times on a single click. Root cause: useState returned a new object reference on every call. useSelector was never memoized.






