1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 19:53:59 +00:00

resolve the failing test

This commit is contained in:
Cy Okeke
2025-06-18 12:52:42 +01:00
parent 93f436a4bb
commit 3105c12a89

View File

@@ -42,7 +42,7 @@ export class PricingCalculationService {
return (
plan.SecretsManager.basePrice +
this.calculateSecretsManagerSeatTotal(plan, subscription?.smSeats) +
this.calculateSecretsManagerSeatTotal(plan, subscription?.smSeats ?? 0) +
this.calculateAdditionalServiceAccountTotal(plan, 0)
); // This will be calculated separately
}