Removed unnnessary share operator

This commit is contained in:
squidfunk
2021-02-16 18:23:57 +01:00
parent ad27da16dc
commit f154dcef80
8 changed files with 8 additions and 10 deletions

View File

@@ -33,7 +33,6 @@ import {
distinctUntilKeyChanged,
finalize,
map,
share,
switchMap,
tap,
withLatestFrom
@@ -118,8 +117,7 @@ export function watchCodeBlock(
)
}
return NEVER
}),
share()
})
)
/* Check overflow on resize and tab change */

View File

@@ -145,7 +145,7 @@ const control$ = merge(
...getComponentElements("dialog")
.map(el => mountDialog(el, { alert$ })),
/* Header */
/* Header */
...getComponentElements("header")
.map(el => mountHeader(el, { viewport$, header$, main$ })),