From b1701b6e8a1117669f840955e76bf07ed2de097f Mon Sep 17 00:00:00 2001 From: Jonas Hendrickx Date: Fri, 14 Feb 2025 17:58:47 +0100 Subject: [PATCH] [PM-18321] Fix sales tax calculation for secrets manager (#13409) --- .../app/billing/organizations/change-plan-dialog.component.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/app/billing/organizations/change-plan-dialog.component.ts b/apps/web/src/app/billing/organizations/change-plan-dialog.component.ts index f8ccd96e97a..d4ade25aa1d 100644 --- a/apps/web/src/app/billing/organizations/change-plan-dialog.component.ts +++ b/apps/web/src/app/billing/organizations/change-plan-dialog.component.ts @@ -1043,7 +1043,8 @@ export class ChangePlanDialogComponent implements OnInit, OnDestroy { if (this.organization.useSecretsManager) { request.secretsManager = { seats: this.sub.smSeats, - additionalMachineAccounts: this.sub.smServiceAccounts, + additionalMachineAccounts: + this.sub.smServiceAccounts - this.sub.plan.SecretsManager.baseServiceAccount, }; }