Hello I am using RxJS combineLatest
operator and getting this error. Could someone let me know what changes I should do
combineLatest
is static akin to forkJoin
. So you need to initialize an observable out of it. See v5 -> v6 migration guide and search for combineLatest
.import { combineLatest } from 'rxjs';
this.searchResult = combineLatest(this.searchQuery$, this.listMachines).pipe(...);