ngrx effects error handling

The ngrx infrastructure subscribes to the effect via the provider imported into the app’s NgModule using EffectsModule.run. When the observable errors and catch returns a empty obervable, the composed observable completes and its subscribers are unsubscribed – that’s part of the Observable Contract. And that’s the reason you see no further handling of LOGIN actions … Read more