1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 05:53:42 +00:00

Fix build

This commit is contained in:
Bernd Schoolmann
2025-01-20 13:06:06 +01:00
parent 7d73086f55
commit c79d7e4e82
2 changed files with 6 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ import { AccountService } from "@bitwarden/common/auth/abstractions/account.serv
import { AnonymousHubService } from "@bitwarden/common/auth/abstractions/anonymous-hub.service";
import { AuthService } from "@bitwarden/common/auth/abstractions/auth.service";
import { DeviceTrustServiceAbstraction } from "@bitwarden/common/auth/abstractions/device-trust.service.abstraction";
import { InternalMasterPasswordServiceAbstraction } from "@bitwarden/common/auth/abstractions/master-password.service.abstraction";
import { AppIdService } from "@bitwarden/common/platform/abstractions/app-id.service";
import { CryptoFunctionService } from "@bitwarden/common/platform/abstractions/crypto-function.service";
import { EnvironmentService } from "@bitwarden/common/platform/abstractions/environment.service";
@@ -52,6 +53,7 @@ export class LoginViaAuthRequestComponentV1 extends BaseLoginViaAuthRequestCompo
accountService: AccountService,
private location: Location,
toastService: ToastService,
masterPasswordService: InternalMasterPasswordServiceAbstraction,
) {
super(
router,
@@ -73,6 +75,7 @@ export class LoginViaAuthRequestComponentV1 extends BaseLoginViaAuthRequestCompo
authRequestService,
loginStrategyService,
toastService,
masterPasswordService,
);
this.onSuccessfulLogin = async () => {
await syncService.fullSync(true);

View File

@@ -16,6 +16,7 @@ import { AccountService } from "@bitwarden/common/auth/abstractions/account.serv
import { AnonymousHubService } from "@bitwarden/common/auth/abstractions/anonymous-hub.service";
import { AuthService } from "@bitwarden/common/auth/abstractions/auth.service";
import { DeviceTrustServiceAbstraction } from "@bitwarden/common/auth/abstractions/device-trust.service.abstraction";
import { InternalMasterPasswordServiceAbstraction } from "@bitwarden/common/auth/abstractions/master-password.service.abstraction";
import { AppIdService } from "@bitwarden/common/platform/abstractions/app-id.service";
import { CryptoFunctionService } from "@bitwarden/common/platform/abstractions/crypto-function.service";
import { EnvironmentService } from "@bitwarden/common/platform/abstractions/environment.service";
@@ -62,6 +63,7 @@ export class LoginViaAuthRequestComponentV1 extends BaseLoginViaAuthRequestCompo
accountService: AccountService,
private location: Location,
toastService: ToastService,
masterPasswordService: InternalMasterPasswordServiceAbstraction,
) {
super(
router,
@@ -83,6 +85,7 @@ export class LoginViaAuthRequestComponentV1 extends BaseLoginViaAuthRequestCompo
authRequestService,
loginStrategyService,
toastService,
masterPasswordService,
);
this.onSuccessfulLogin = () => {