diff --git a/packages/p2p/src/components/buy-sell/buy-sell-modal.jsx b/packages/p2p/src/components/buy-sell/buy-sell-modal.jsx index b562d32d297e..930254a10ac1 100644 --- a/packages/p2p/src/components/buy-sell/buy-sell-modal.jsx +++ b/packages/p2p/src/components/buy-sell/buy-sell-modal.jsx @@ -75,10 +75,11 @@ const BuySellModal = ({ table_type, selected_ad, should_show_popup, setShouldSho }, [should_show_popup]); const Form = general_store.nickname ? BuySellForm : NicknameForm; - const modal_title = - table_type === buy_sell.BUY - ? localize('Buy {{ currency }}', { currency: selected_ad.account_currency }) - : localize('Sell {{ currency }}', { currency: selected_ad.account_currency }); + const modal_title = my_profile_store.should_show_add_payment_method_form + ? localize('Add a payment method') + : table_type === buy_sell.BUY + ? localize('Buy {{ currency }}', { currency: selected_ad.account_currency }) + : localize('Sell {{ currency }}', { currency: selected_ad.account_currency }); if (isMobile()) { return ( diff --git a/packages/p2p/src/components/buy-sell/buy-sell-row.scss b/packages/p2p/src/components/buy-sell/buy-sell-row.scss index 6a0b9646c7f5..41b727513b70 100644 --- a/packages/p2p/src/components/buy-sell/buy-sell-row.scss +++ b/packages/p2p/src/components/buy-sell/buy-sell-row.scss @@ -2,7 +2,7 @@ @include mobile { border-bottom: 1px solid var(--general-section-1); padding: 1.6rem; - height: 200px; + height: 18.6rem; display: flex; flex-direction: column; }