Fixed double-complete errors after upgrading to RxJS 7.3

This commit is contained in:
squidfunk
2021-08-04 21:19:56 +02:00
parent 6ac55d485e
commit b07e466bec
25 changed files with 58 additions and 91 deletions

View File

@@ -24,7 +24,6 @@ import { NEVER, Observable, Subject, defer, of } from "rxjs"
import {
catchError,
filter,
finalize,
map,
shareReplay,
tap
@@ -119,7 +118,6 @@ export function mountSource(
return watchSource(el)
.pipe(
tap(internal$),
finalize(() => internal$.complete()),
map(state => ({ ref: el, ...state }))
)
}