I am trying to upgrade my angular 9 app to angular 10 version, but getting below warning after the upgrade
rxjs\BehaviorSubject.js depends on rxjs-compat/BehaviorSubject
Any idea how to fix this?
Thanks in advance!
try replacing the rxjs imports rxjs/internal/operators
with rxjs/operators
.
ex:
import { catchError, retry } from 'rxjs/internal/operators';
with
import { catchError, retry } from 'rxjs/operators';