diff --git a/components/forms/pricing-tiers.tsx b/components/forms/pricing-tiers.tsx index eb01ce4..c408a13 100644 --- a/components/forms/pricing-tiers.tsx +++ b/components/forms/pricing-tiers.tsx @@ -21,12 +21,10 @@ export const PricingTiers = ({ handleAddTier, }: PricingTiersProps) => { const formatNumber = (num: number) => { - // For price per unit, show up to 6 decimal places if needed - return Number(num.toFixed(6)).toString(); + return Number(num.toFixed(2)).toString(); }; const formatTotal = (num: number) => { - // For total price, always show 2 decimal places return num.toFixed(2); };