In React Dev Tools, I'm seeing two providers:
As far as I know, I'm not doing anything weird when setting up the code:
ReactDom.render(
<Provider store={store}>
<ConnectedRouter history={history} >
<Routes store={store} />
</ConnectedRouter>
</Provider>, document.getElementById('root')
);
Is it possible that there's a bug in the tool, or am I committing a common error?