1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-09 21:20:27 +00:00

[PM-19180] Sponsored family org no sales tax because they're free

This commit is contained in:
Jonas Hendrickx
2025-03-28 14:51:18 +01:00
parent 8b14b0c09f
commit 94ad030467

View File

@@ -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;
}