You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using observeOn and the async scheduler in a few places. But it gets migrated to something that still requires rxjs-compat. And for the life of me I can't find how this is supposed to be done in RxJS 6. The migration documentation is frankly horrific!
So basically the migration tool leaves me with
import { async } from 'rxjs/scheduler/async';
this.leftNavVisibleSubject.pipe(
distinctUntilChanged(),
observeOn(async));
This fails to compile as soon as I drop rxjs-compat and as said I've been pulling my hair trying to find how this is supposed to be migrated.
The text was updated successfully, but these errors were encountered:
I'm using
observeOn
and theasync
scheduler in a few places. But it gets migrated to something that still requiresrxjs-compat
. And for the life of me I can't find how this is supposed to be done in RxJS 6. The migration documentation is frankly horrific!So basically the migration tool leaves me with
This fails to compile as soon as I drop rxjs-compat and as said I've been pulling my hair trying to find how this is supposed to be migrated.
The text was updated successfully, but these errors were encountered: