Hi, I have this setup of my store:
const finalCreateStore = compose(
autoRehydrate(),
applyMiddleware(thunk, logger),
)(createStore);
const store = finalCreateStore(reducer, {
routing: {
path: `/contacts/30/about`,
},
});
and then at app.jsx I use syncReduxAndRouter(history, store).
When I start my app redux-simple-router ignores my initialState with routing.path. Why?
