Why is my Redux component re-rendering too much?
Usually because you are selecting too much state. Using useSelector to select a large object when you need one field causes re-renders whenever any part changes. Select only the specific data you need.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in Common Redux Mistakes That Make React State Hard to Manage
RTK uses Immer internally, so you can write mutating-looking code like state.items.push(item) safely. But you should know this is happening. In classic Redux without Immer, mutating state directly causes bugs.
No. UI state like a modal open flag often belongs in local component state. Reserve Redux for genuinely shared, complex state. Putting everything in Redux adds unnecessary complexity.
Because RTK removes the boilerplate classic Redux was infamous for, is the official recommendation, and is far easier to maintain. Writing classic Redux by hand in a new project is a mistake.
Still have questions?
Browse all our FAQs or reach out to our support team
