Hello.
I'm working on an electrón app that manage folders.
I want that, when the user drops some folders into the app, let's say five, a message shows indicating which folder is being processed.
The way I'm doing it is by not changing the state at all but just sending the same array of folders (these are just objects) with the difference that the current folder has a prop named current set to true, and it gets toggled to every folder being processed.
So, the problem is that, only by passing to the machine a slightly different array, it doesn't re-render the component, and it only do that if I change the state and change it back.
Any hint in how to solve this?