diff --git a/packages/console/src/components/CreateTenantModal/SelectTenantPlanModal/PlanCardItem/index.tsx b/packages/console/src/components/CreateTenantModal/SelectTenantPlanModal/PlanCardItem/index.tsx index 40e9205f6..5ad419854 100644 --- a/packages/console/src/components/CreateTenantModal/SelectTenantPlanModal/PlanCardItem/index.tsx +++ b/packages/console/src/components/CreateTenantModal/SelectTenantPlanModal/PlanCardItem/index.tsx @@ -44,7 +44,9 @@ function PlanCardItem({ plan, onSelect }: Props) { const tierPrices = useMemo(() => { const prices = stripeProducts .filter(({ type }) => type !== 'flat') - .map(({ price: { unitAmountDecimal } }) => `$${Number(unitAmountDecimal) / 100}`); + .map( + ({ price: { unitAmountDecimal } }) => `$${(Number(unitAmountDecimal) / 100).toFixed(3)}` + ); return prices.length > 0 ? prices.join(' ') : '$0.00'; }, [stripeProducts]); diff --git a/packages/console/src/pages/TenantSettings/Subscription/PlanQuotaTable/index.tsx b/packages/console/src/pages/TenantSettings/Subscription/PlanQuotaTable/index.tsx index a44096a86..31838e0dd 100644 --- a/packages/console/src/pages/TenantSettings/Subscription/PlanQuotaTable/index.tsx +++ b/packages/console/src/pages/TenantSettings/Subscription/PlanQuotaTable/index.tsx @@ -121,7 +121,7 @@ function PlanQuotaTable({ subscriptionPlans }: Props) {
))}