diff --git a/src/components/views/donate/Recurring/RecurringDonationModal/Item.tsx b/src/components/views/donate/Recurring/RecurringDonationModal/Item.tsx index 2366a6de13..10f5225c3d 100644 --- a/src/components/views/donate/Recurring/RecurringDonationModal/Item.tsx +++ b/src/components/views/donate/Recurring/RecurringDonationModal/Item.tsx @@ -31,7 +31,9 @@ export const Item: FC = ({ {limitFraction( formatUnits( amount, - token.underlyingToken?.decimals || 18, + token.underlyingToken?.decimals || + token.decimals || + 18, ), )}  {token.symbol} @@ -47,7 +49,9 @@ export const Item: FC = ({ .multipliedBy(amount.toString()) .toFixed(0), ), - token.underlyingToken?.decimals || 18, + token.underlyingToken?.decimals || + token.decimals || + 18, ), 2, )} diff --git a/src/config/production.tsx b/src/config/production.tsx index 27c51ceb91..189a42dce0 100644 --- a/src/config/production.tsx +++ b/src/config/production.tsx @@ -530,7 +530,7 @@ const config: EnvConfig = { symbol: 'USDC', coingeckoId: 'usd-coin', }, - decimals: 18, + decimals: 6, id: '0x8430f084b939208e2eded1584889c9a66b90562f', name: 'Super USD Coin', symbol: 'USDCx',