Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- Fixing formatting.
  • Loading branch information
mcgilman committed Apr 29, 2024
1 parent b885873 commit 41c03cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3460,7 +3460,7 @@ export class FlowEffects {
map((response) => FlowActions.pollChangeVersionSuccess({ response })),
catchError((errorResponse: HttpErrorResponse) => {
this.store.dispatch(FlowActions.stopPollingChangeVersion());
return of(this.snackBarOrFullScreenError(errorResponse))
return of(this.snackBarOrFullScreenError(errorResponse));
})
)
);
Expand Down Expand Up @@ -3635,7 +3635,7 @@ export class FlowEffects {
map((response) => FlowActions.pollRevertChangesSuccess({ response })),
catchError((errorResponse: HttpErrorResponse) => {
this.store.dispatch(FlowActions.stopPollingRevertChanges());
return of(this.snackBarOrFullScreenError(errorResponse))
return of(this.snackBarOrFullScreenError(errorResponse));
})
)
);
Expand Down

0 comments on commit 41c03cf

Please sign in to comment.