Your component won’t re-render even though the state changed.
You push, splice, or update the array Console shows the change. UI frozen.
React checks references, not contents.
Mutating state = invisible updates.
Fix: always create a new array reference.
Ever panic over this?