1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 21:50:15 +00:00

remove tap

This commit is contained in:
Anders Åberg
2025-02-20 00:35:38 +01:00
parent 48d1743ab5
commit bd9ffb57fc

View File

@@ -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$;