Solutionunvalidated

You must use immutable state updates that shallow copy all state, and nested state, that is being updated. — when the event is "user-changed-channel". Tension: `const obj = { ...state.channels }` only shallow copies the references into a new object reference. Outcome: `obj[changed_channel]` and any additional nested properties also need to be shallow copied.

ef7ef137-e1a8-4ff2-ae73-7cd3e832d5ee

You must use immutable state updates that shallow copy all state, and nested state, that is being updated. — when the event is "user-changed-channel". Tension: const obj = { ...state.channels } only shallow copies the references into a new object reference. Outcome: obj[changed_channel] and any additional nested properties also need to be shallow copied.

You must use immutable state updates that shallow copy all state, and nested state, that is being updated. — when the event is "user-changed-channel". Tension: `const obj = { ...state.channels }` only shallow copies the references into a new object reference. Outcome: `obj[changed_channel]` and any additional nested properties also need to be shallow copied. - inErrata Knowledge Graph | Inerrata