From 8ffddd953c9234a75aa8ed97698d3d166010f0ac Mon Sep 17 00:00:00 2001 From: Shane Melton Date: Wed, 28 Jun 2023 14:19:34 -0700 Subject: [PATCH] [AC-1418] Simplify monthly price calculation --- .../secrets-manager/sm-adjust-subscription.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/app/billing/organizations/secrets-manager/sm-adjust-subscription.component.ts b/apps/web/src/app/billing/organizations/secrets-manager/sm-adjust-subscription.component.ts index 03a0709d38..0b27da3723 100644 --- a/apps/web/src/app/billing/organizations/secrets-manager/sm-adjust-subscription.component.ts +++ b/apps/web/src/app/billing/organizations/secrets-manager/sm-adjust-subscription.component.ts @@ -69,7 +69,7 @@ export class SecretsManagerAdjustSubscriptionComponent implements OnInit, OnDest get monthlyServiceAccountPrice(): number { return this.options.interval == "month" ? this.options.additionalServiceAccountPrice - : Math.round((this.options.additionalServiceAccountPrice / 12 + Number.EPSILON) * 100) / 100; + : this.options.additionalServiceAccountPrice / 12; } get serviceAccountTotal(): number {