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 4934164cac0..f8ccd96e97a 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 @@ -616,7 +616,7 @@ export class ChangePlanDialogComponent implements OnInit, OnDestroy { return subTotal - this.discount; } - get secretsManagerSubtotal() { + secretsManagerSubtotal() { this.secretsManagerTotal = 0; const plan = this.selectedSecretsManagerPlan; @@ -643,7 +643,7 @@ export class ChangePlanDialogComponent implements OnInit, OnDestroy { return ( this.passwordManagerSubtotal + this.additionalStorageTotal(this.selectedPlan) + - this.secretsManagerTotal + + this.secretsManagerSubtotal() + this.estimatedTax ); }