1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 13:40:06 +00:00

fix: type error (#13537)

not sure how this wasn't caught in the CI before the merge

(cherry picked from commit f8f2ec6722)
This commit is contained in:
Andreas Coroiu
2025-02-24 14:02:26 +01:00
committed by Andreas Coroiu
parent 3747ece8e4
commit 2248191970

View File

@@ -183,7 +183,7 @@ export class DefaultSdkService implements SdkService {
kdfParams: KdfConfig,
privateKey: EncryptedString,
userKey: UserKey,
orgKeys?: Record<OrganizationId, EncryptedOrganizationKeyData>,
orgKeys: Record<OrganizationId, EncryptedOrganizationKeyData> | null,
) {
await client.crypto().initialize_user_crypto({
email: account.email,