Subscribe is deprecated: Use an observer instead of an error callback

When I run the linter it says:

subscribe is deprecated: Use an observer instead of an error callback

Code from this angular app:

    this.userService.updateUser(data).pipe(
       tap(() => {bla bla bla})
    ).subscribe(
       this.handleUpdateResponse.bind(this),
       this.handleError.bind(this)
    );

Don’t know exactly what should I use and how…

Thanks!

8 Answers
8

Leave a Comment