We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
minimal example for the issue:
@Injectable() export class LoadingStateEffects { private do = (callback: () => Action): OperatorFunction<Action, Action> => map(() => callback()); effect1$ = createEffect(() => this.actions$.pipe(ofType(action1), this.do(dispatchAction2)) ); effect1$ = createEffect(() => this.actions$.pipe(ofType(action3), this.do(dispatchAction4)) ); } function dispatchAction2() { return action2() } function dispatchAction4() { return action4() }
expected graph:
action1 -> action2 action3 -> action4
The text was updated successfully, but these errors were encountered:
No branches or pull requests
minimal example for the issue:
expected graph:
The text was updated successfully, but these errors were encountered: