1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

fix: type error (#13537)

not sure how this wasn't caught in the CI before the merge
This commit is contained in:
Andreas Coroiu
2025-02-24 14:02:26 +01:00
committed by GitHub
parent df9ce88398
commit f8f2ec6722

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,