Trying to upgrade from angular 5.2 to angular 6.0.0, we are running into the following error:
error TS2339: Property 'do' does not exist on type 'Observable<
Any ideas why?
The Code where we are using is
return this.httpClient.post<x>(`${environment.apiUrl}auth/x/`,
this.abcd,
httpOptions)
.do(x1 => this.subject.next(x1))