Is your feature request related to a problem? Please describe.
If the reset is done after loading the lazy module, it is also necessary to reset the state with their initial state. Otherwise the actions of the lazy module will no longer work
Describe the solution you'd like
Use the UpdateState action in addition to InitState in ResetHandler to add the lazy initial state in resetService.initialState 🤔
Describe alternatives you've considered
ðŸ’
Additional context
In my application I have to change entities. When changing entities I would like to reset the state of the application (expert routerState and authState).
My application contains many lazy modules ^^
Is your feature request related to a problem? Please describe.
If the reset is done after loading the lazy module, it is also necessary to reset the state with their initial state. Otherwise the actions of the lazy module will no longer work
Describe the solution you'd like
Use the
UpdateState
action in addition toInitState
inResetHandler
to add the lazy initial state inresetService.initialState
🤔Describe alternatives you've considered ðŸ’
Additional context In my application I have to change entities. When changing entities I would like to reset the state of the application (expert routerState and authState). My application contains many lazy modules ^^