diff --git a/package.json b/package.json index e1ff5b65e1..1b1eaf1a73 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "givethdapp", - "version": "2.14.7", + "version": "2.14.8", "private": true, "scripts": { "build": "next build", diff --git a/src/components/modals/DonateModal.tsx b/src/components/modals/DonateModal.tsx index 3e29b301fb..2f63e2f484 100644 --- a/src/components/modals/DonateModal.tsx +++ b/src/components/modals/DonateModal.tsx @@ -197,7 +197,8 @@ const DonateModal: FC = props => { tokenAddress = token.mainnetAddress || ''; } const coingeckoChainId = - isMainnet || token.mainnetAddress + isMainnet || + (token.mainnetAddress && token.symbol !== 'CELO') ? config.MAINNET_NETWORK_NUMBER : isGnosis ? config.XDAI_NETWORK_NUMBER diff --git a/src/components/views/verification/manageFunds/UserAddress.tsx b/src/components/views/verification/manageFunds/UserAddress.tsx index 4297e52b4a..75ccef9a49 100644 --- a/src/components/views/verification/manageFunds/UserAddress.tsx +++ b/src/components/views/verification/manageFunds/UserAddress.tsx @@ -17,7 +17,7 @@ const UserAddress: FC = ({ address, remove }) => {