1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 00:03:56 +00:00

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

This commit is contained in:
Jonas Hendrickx
2025-02-14 17:58:47 +01:00
committed by GitHub
parent 05cd1859a9
commit b1701b6e8a

View File

@@ -1043,7 +1043,8 @@ export class ChangePlanDialogComponent implements OnInit, OnDestroy {
if (this.organization.useSecretsManager) { if (this.organization.useSecretsManager) {
request.secretsManager = { request.secretsManager = {
seats: this.sub.smSeats, seats: this.sub.smSeats,
additionalMachineAccounts: this.sub.smServiceAccounts, additionalMachineAccounts:
this.sub.smServiceAccounts - this.sub.plan.SecretsManager.baseServiceAccount,
}; };
} }