From edb9bfda2c40fa0aca1932ac12e164aa469c5f24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20=C3=85berg?= Date: Fri, 28 Feb 2025 11:24:37 +0100 Subject: [PATCH] Remove unsued dep and comment --- .../services/desktop-fido2-user-interface.service.ts | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/apps/desktop/src/autofill/services/desktop-fido2-user-interface.service.ts b/apps/desktop/src/autofill/services/desktop-fido2-user-interface.service.ts index 4a9f9a62510..848d97a297b 100644 --- a/apps/desktop/src/autofill/services/desktop-fido2-user-interface.service.ts +++ b/apps/desktop/src/autofill/services/desktop-fido2-user-interface.service.ts @@ -1,14 +1,5 @@ import { Router } from "@angular/router"; -import { - lastValueFrom, - firstValueFrom, - map, - Subject, - filter, - take, - BehaviorSubject, - Observable, -} from "rxjs"; +import { lastValueFrom, firstValueFrom, map, Subject, filter, take, BehaviorSubject } from "rxjs"; import { AccountService } from "@bitwarden/common/auth/abstractions/account.service"; import { AuthService } from "@bitwarden/common/auth/abstractions/auth.service"; @@ -135,7 +126,6 @@ export class DesktopFido2UserInterfaceSession implements Fido2UserInterfaceSessi this.logService.debug("Could not shortcut, showing UI"); // make the cipherIds available to the UI. - // Not sure if the UI also need to know about masterPasswordRepromptRequired -- probably not, otherwise we can send all of the params. this.availableCipherIdsSubject.next(cipherIds); await this.showUi("/passkeys", this.windowObject.windowXy);