Skip to content

Commit

Permalink
chore: CXSPA-4884 Tap operator handlers (#17905)
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelfras authored Oct 5, 2023
1 parent f538f1a commit 035189c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/core/src/util/command-query/command.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class CommandService implements OnDestroy {
process$ = zip(commands$, results$).pipe(
mergeMap(([cmd, notifier$]) =>
defer(() => commandFactory(cmd)).pipe(
tap(notifier$),
tap(notify(notifier$)),
catchError(() => EMPTY)
)
)
Expand Down

0 comments on commit 035189c

Please sign in to comment.