From 94ad030467f2eff79248a95054bb1f38fe6ee1fe Mon Sep 17 00:00:00 2001 From: Jonas Hendrickx Date: Fri, 28 Mar 2025 14:51:18 +0100 Subject: [PATCH] [PM-19180] Sponsored family org no sales tax because they're free --- .../app/billing/organizations/organization-plans.component.ts | 2 +- 1 file changed, 1 insertion(+), 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 fc7d6793a85..1223ebfe287 100644 --- a/apps/web/src/app/billing/organizations/organization-plans.component.ts +++ b/apps/web/src/app/billing/organizations/organization-plans.component.ts @@ -682,7 +682,7 @@ export class OrganizationPlansComponent implements OnInit, OnDestroy { } private refreshSalesTax(): void { - if (this.formGroup.controls.plan.value == PlanType.Free) { + if (this.formGroup.controls.plan.value == PlanType.Free || this.acceptingSponsorship === true) { this.estimatedTax = 0; return; }