nareshbhatia / mobx-state-router

MobX-powered router for React apps
https://nareshbhatia.github.io/mobx-state-router/
MIT License
227 stars 31 forks source link

Warning when MobX Strict Mode is enabled #146

Open armego-philips opened 1 year ago

armego-philips commented 1 year ago

[MobX] Since strict-mode is enabled, changing (observed) observable values without using an action is not allowed. Tried to modify: RouterStore@1.routerState In RouterStore class, replacing this.routerState = this.options.initialState; with this.setRouterState(this.options.initialState); should work.