From 0f9d9fdf3dd21543c74dd52587dd2f4e15e56425 Mon Sep 17 00:00:00 2001 From: Gabriel Masclef Date: Fri, 26 Apr 2024 12:09:37 -0300 Subject: [PATCH] Ref: do not show wallet address form on moonpay checkout --- src/navigation/services/buy-crypto/screens/BuyCryptoOffers.tsx | 2 +- src/navigation/services/sell-crypto/screens/SellCryptoRoot.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/navigation/services/buy-crypto/screens/BuyCryptoOffers.tsx b/src/navigation/services/buy-crypto/screens/BuyCryptoOffers.tsx index 4c172602d..9b1347bd0 100644 --- a/src/navigation/services/buy-crypto/screens/BuyCryptoOffers.tsx +++ b/src/navigation/services/buy-crypto/screens/BuyCryptoOffers.tsx @@ -1816,7 +1816,7 @@ const BuyCryptoOffers: React.FC = () => { APP_DEEPLINK_PREFIX + `moonpay?externalId=${externalTransactionId}`, env: moonpayEnv, lockAmount: true, - showWalletAddressForm: true, + showWalletAddressForm: false, }; let data; diff --git a/src/navigation/services/sell-crypto/screens/SellCryptoRoot.tsx b/src/navigation/services/sell-crypto/screens/SellCryptoRoot.tsx index 4adc20470..eb857192d 100644 --- a/src/navigation/services/sell-crypto/screens/SellCryptoRoot.tsx +++ b/src/navigation/services/sell-crypto/screens/SellCryptoRoot.tsx @@ -553,7 +553,7 @@ const SellCryptoRoot = ({ colorCode: BitPay, theme: theme.dark ? 'dark' : 'light', quoteCurrencyCode: cloneDeep(fiatCurrency).toLowerCase(), - showWalletAddressForm: true, + showWalletAddressForm: false, }; let data: MoonpayGetSellSignedPaymentUrlData;