mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 18:23:31 +00:00
Fix glob processing in npm. Ban single param parens (#257)
This commit is contained in:
@@ -80,7 +80,7 @@ export class CryptoService implements CryptoServiceAbstraction {
|
||||
|
||||
setOrgKeys(orgs: ProfileOrganizationResponse[]): Promise<{}> {
|
||||
const orgKeys: any = {};
|
||||
orgs.forEach((org) => {
|
||||
orgs.forEach(org => {
|
||||
orgKeys[org.id] = org.key;
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user