score:0

 setdynamicchildren() {
        this.setstate({
            children: this.getchildren()
        });
    }

is there a reason your intermixing redux state and local class state changes? from my experience this is asking for weird behaviour. i would swap this.setstate for this.props.dispatch(action...) to update the redux store state. do you still have issues when the complete state is now in redux? otherwise a snapshot of redux dev tools state changes would be helpful in these cases.


Related Query

More Query from same tag