From 9eef1f0953c5d7a0f854d69306addc5c98ffd5ee Mon Sep 17 00:00:00 2001 From: Will Martin Date: Thu, 9 May 2024 13:47:05 -0400 Subject: [PATCH] fix merge error introduced in PM-5017 (#9102) --- .../app/billing/organizations/organization-plans.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/app/billing/organizations/organization-plans.component.ts b/apps/web/src/app/billing/organizations/organization-plans.component.ts index 992ee4f3a9..41af702ba0 100644 --- a/apps/web/src/app/billing/organizations/organization-plans.component.ts +++ b/apps/web/src/app/billing/organizations/organization-plans.component.ts @@ -595,7 +595,8 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { this.formPromise = doSubmit(); const organizationId = await this.formPromise; this.onSuccess.emit({ organizationId: organizationId }); - this.messagingService.send("organizationCreated", organizationId); + // TODO: No one actually listening to this message? + this.messagingService.send("organizationCreated", { organizationId }); }; private async updateOrganization(orgId: string) {