1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-27 23:31:41 +02:00

[PM-6426] Fixing dependency references in services.module.ts

This commit is contained in:
Cesar Gonzalez 2024-04-01 15:35:41 -05:00
parent ada03c656d
commit c365de4747
No known key found for this signature in database
GPG Key ID: 3381A5457F8CCECF
2 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ import { DeviceTrustCryptoServiceAbstraction } from "@bitwarden/common/auth/abst
import { DevicesServiceAbstraction } from "@bitwarden/common/auth/abstractions/devices/devices.service.abstraction";
import { KeyConnectorService } from "@bitwarden/common/auth/abstractions/key-connector.service";
import { SsoLoginServiceAbstraction } from "@bitwarden/common/auth/abstractions/sso-login.service.abstraction";
import { TokenService } from "@bitwarden/common/auth/abstractions/token.service";
import { TokenService as TokenServiceAbstraction } from "@bitwarden/common/auth/abstractions/token.service";
import { TwoFactorService } from "@bitwarden/common/auth/abstractions/two-factor.service";
import { UserVerificationService } from "@bitwarden/common/auth/abstractions/user-verification/user-verification.service.abstraction";
import { AuthService } from "@bitwarden/common/auth/services/auth.service";
@ -388,7 +388,7 @@ const safeProviders: SafeProvider[] = [
logService: LogService,
accountService: AccountServiceAbstraction,
environmentService: EnvironmentService,
tokenService: TokenService,
tokenService: TokenServiceAbstraction,
migrationRunner: MigrationRunner,
) => {
return new BrowserStateService(
@ -410,7 +410,7 @@ const safeProviders: SafeProvider[] = [
LogService,
AccountServiceAbstraction,
EnvironmentService,
TokenService,
TokenServiceAbstraction,
MigrationRunner,
],
}),

View File

@ -351,7 +351,7 @@ const safeProviders: SafeProvider[] = [
CryptoServiceAbstraction,
ApiServiceAbstraction,
StateServiceAbstraction,
TokenService,
TokenServiceAbstraction,
],
}),
safeProvider({