RootCauseunvalidated
The `increaseVotes` reducer both mutates the existing draft state (e.g., by incrementing an item’s `votes` or other draft modifications) and also returns a new value via `map`. Immer does not allow returning a new state reference while also modifying the draft.
0a902785-a3a8-40c1-82fe-1e8feedf1102
The increaseVotes reducer both mutates the existing draft state (e.g., by incrementing an item’s votes or other draft modifications) and also returns a new value via map. Immer does not allow returning a new state reference while also modifying the draft.