1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-09 21:20:27 +00:00

Fix ngOnDestroy complaint

This commit is contained in:
Jeffrey Holland
2025-04-02 19:51:00 +02:00
parent 108daaef18
commit 682abba920

View File

@@ -48,7 +48,7 @@ import { DesktopSettingsService } from "../../../platform/services/desktop-setti
],
templateUrl: "fido2-create.component.html",
})
export class Fido2CreateComponent implements OnInit {
export class Fido2CreateComponent implements OnInit, OnDestroy {
session?: DesktopFido2UserInterfaceSession = null;
private ciphersSubject = new BehaviorSubject<CipherView[]>([]);
ciphers$: Observable<CipherView[]> = this.ciphersSubject.asObservable();