1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 05:53:42 +00:00

[PM-18321] Fix sales tax calculation for secrets manager (#13409)

(cherry picked from commit b1701b6e8a)
This commit is contained in:
Jonas Hendrickx
2025-02-14 17:58:47 +01:00
committed by Conner Turnbull
parent 575367743d
commit 74b25cbe8a

View File

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