I'm using @ngrx since some time now and came accross an issue with meta-reducers.
I implemented a meta-reducer for one of my featureModule inside which I just do a console.log of the action/state.
When launching the application I saw that actions of the others featureModule (ex: routerStore => type: "@ngrx/router-store/navigation") where also appearing inside my meta-reducer, I was expecting to only see action of my specific featureModule.
Is this the intended behavior ?
Thank you for your help !