diff --git a/src/components/FiatOnrampModal/index.tsx b/src/components/FiatOnrampModal/index.tsx index 35ed3ee4e7..bffa73dfbf 100644 --- a/src/components/FiatOnrampModal/index.tsx +++ b/src/components/FiatOnrampModal/index.tsx @@ -91,12 +91,14 @@ export default function FiatOnrampModal() { colorCode: theme.accentAction, defaultCurrencyCode: 'eth', redirectUrl: 'https://app.uniswap.org/#/swap', - walletAddresses: MOONPAY_SUPPORTED_CURRENCY_CODES.reduce( - (acc, currencyCode) => ({ - ...acc, - [currencyCode]: account, - }), - {} + walletAddresses: JSON.stringify( + MOONPAY_SUPPORTED_CURRENCY_CODES.reduce( + (acc, currencyCode) => ({ + ...acc, + [currencyCode]: account, + }), + {} + ) ), }), })