1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-10 13:23:15 +00:00

Set default argument values

This commit is contained in:
Thomas Rittson
2022-05-12 13:30:07 +10:00
parent 6feeb06a66
commit 99e514d526

View File

@@ -59,8 +59,8 @@ export class CryptoService implements CryptoServiceAbstraction {
} }
async setOrgKeys( async setOrgKeys(
orgs: ProfileOrganizationResponse[], orgs: ProfileOrganizationResponse[] = [],
providerOrgs: ProfileProviderOrganizationResponse[] providerOrgs: ProfileProviderOrganizationResponse[] = []
): Promise<void> { ): Promise<void> {
const encOrgKeyData: { [orgId: string]: EncryptedOrganizationKeyData } = {}; const encOrgKeyData: { [orgId: string]: EncryptedOrganizationKeyData } = {};