You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Render a new component inside the container which takes an object as a prop (an array element from the container's state).
Pass the prop given to the child to the child's useDOA hook. In child component: useDOA(props.obj).
Use a reactive component inside the child which updates one of the DOA-object fields (eg. map.number.set(obj.number + 1)).
Interact with the reactive component.
Inspect the container component's hooks => the hook should update once or a couple of seconds after interacting with the reactive component in a given child component.
Inspect the child component's hooks. (!!!)
The reactive component should not update the child anymore. <--- This is the bug.