Skip to content

Commit

Permalink
fix error name
Browse files Browse the repository at this point in the history
  • Loading branch information
markostanimirovic committed Jun 29, 2021
1 parent c98b8a5 commit b07fe7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/ngrx.io/content/guide/component-store/effect.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ An easy way to handle the response in ComponentStore effects in a safe way, with
//👇 Act on the result within inner pipe.
tapResponse(
(movie) => this.addMovie(movie),
(error: HttpErrorResponse) => this.logError(e),
(error: HttpErrorResponse) => this.logError(error),
),
)),
);
Expand Down

0 comments on commit b07fe7f

Please sign in to comment.