1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

Run npm lint in CI (#1314)

This commit is contained in:
Oscar Hinton
2021-11-24 19:23:31 +01:00
committed by GitHub
parent cbf65c5f42
commit dca12def8d
3 changed files with 5 additions and 5 deletions

View File

@@ -282,8 +282,8 @@ export class OrganizationPlansComponent implements OnInit {
};
this.formPromise = doSubmit();
const orgId = await this.formPromise;
this.onSuccess.emit({ organizationId: orgId });
const organizationId = await this.formPromise;
this.onSuccess.emit({ organizationId: organizationId });
} catch (e) {
this.logService.error(e);
}