Skip to content

Commit

Permalink
fix(sell): update receive to copy for sell
Browse files Browse the repository at this point in the history
  • Loading branch information
schnogz committed Dec 24, 2020
1 parent 78b2838 commit f42c761
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1239,6 +1239,7 @@ type MessagesType = {
'modals.simplebuy.checkout.buymax': 'Buy Max'
'modals.simplebuy.checkout.buymin': 'Buy Min'
'modals.simplebuy.checkout.payment_method': 'Payment Method'
'modals.simplebuy.checkout.receive': 'Recipient Account'
'modals.simplebuy.checkout.larger_amount.title': 'Want to buy larger amounts?'
'modals.simplebuy.checkout.larger_amount.info': 'After completing this transaction, upgrade to Gold level to unlock higher transaction limits and more payment methods.'
'modals.simplebuy.checkoutconfirm': 'Checkout'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,17 @@ import { Props } from '../template.success'
const Payment: React.FC<Props> = props => (
<>
<SectionTitle color='grey900' size='14px' weight={500}>
<FormattedMessage
id='modals.simplebuy.checkout.payment_method'
defaultMessage='Payment Method'
/>
{props.orderType === 'BUY' ? (
<FormattedMessage
id='modals.simplebuy.checkout.payment_method'
defaultMessage='Payment Method'
/>
) : (
<FormattedMessage
id='modals.simplebuy.checkout.receive'
defaultMessage='Recipient Account'
/>
)}
</SectionTitle>
<PaymentContainer
role='button'
Expand Down

0 comments on commit f42c761

Please sign in to comment.