But this type going to new redux instance
No problem if I call the action with timeout.
componentDidMount(){
setTimeout(()=>this.props.isLoggedIn(), 100)
}
Or if I call under render, no problem again.
render() {
this.props.isLoggedIn()
...
...
This problem occurs only when i call the action under componentDidUpdate on app load. Like that:
componentDidMount(){
this.props.isLoggedIn() //problem
}
Causing the split redux instance...