mirror of
https://github.com/bitwarden/browser
synced 2026-02-10 21:50:15 +00:00
remove tap
This commit is contained in:
@@ -10,7 +10,6 @@ import {
|
||||
shareReplay,
|
||||
Subject,
|
||||
switchMap,
|
||||
tap,
|
||||
} from "rxjs";
|
||||
import { SemVer } from "semver";
|
||||
|
||||
@@ -142,7 +141,6 @@ export class CipherService implements CipherServiceAbstraction {
|
||||
this.cipherViews$ = combineLatest([this.encryptedCiphersState.state$, this.localData$]).pipe(
|
||||
filter(([ciphers]) => ciphers != null), // Skip if ciphers haven't been loaded yor synced yet
|
||||
switchMap(() => merge(this.forceCipherViews$, this.getAllDecrypted())),
|
||||
tap((v) => console.log("---- cipherViews$", v)),
|
||||
shareReplay({ bufferSize: 1, refCount: true }),
|
||||
);
|
||||
this.addEditCipherInfo$ = this.addEditCipherInfoState.state$;
|
||||
|
||||
Reference in New Issue
Block a user