1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 14:04:03 +00:00

FIx build & linting

This commit is contained in:
Bernd Schoolmann
2025-01-14 17:58:44 +01:00
parent 6573464cf2
commit 625f612c73

View File

@@ -1,4 +1,3 @@
import { Utils } from "@bitwarden/common/platform/misc/utils";
import { SymmetricCryptoKey } from "@bitwarden/common/platform/models/domain/symmetric-crypto-key";
import { UserId } from "@bitwarden/common/types/guid";
import { UserKey } from "@bitwarden/common/types/key";
@@ -36,7 +35,7 @@ export class ForegroundBrowserBiometricsService extends BiometricsService {
if (!response.result) {
return null;
}
return new SymmetricCryptoKey.fromString(response.result.keyB64) as UserKey;
return SymmetricCryptoKey.fromString(response.result.keyB64) as UserKey;
}
async getBiometricsStatusForUser(id: UserId): Promise<BiometricsStatus> {