diff --git a/apps/portal/src/utils/offers/currency/index.tsx b/apps/portal/src/utils/offers/currency/index.tsx index c2cfcb05..8afe5860 100644 --- a/apps/portal/src/utils/offers/currency/index.tsx +++ b/apps/portal/src/utils/offers/currency/index.tsx @@ -10,5 +10,5 @@ export function convertCurrencyToString({ currency, value }: Money) { minimumFractionDigits: 0, // (causes 2500.99 to be printed as $2,501) style: 'currency', }); - return `${formatter.format(10000)}`; /* $2,500.00 */ + return `${formatter.format(value)}`; }