Angular - State Management
Why does this effect fail to dispatch any action?
delete$ = createEffect(() => this.actions$.pipe(
ofType('DELETE'),
tap(action => this.api.delete(action.payload))
))