Skip to content

Commit

Permalink
feat: add fee to ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Han committed Dec 15, 2021
1 parent 446c47f commit 7f5e99d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@ type MessagesType = {
'copy.below_swap_min': 'Minimum Swap is {value}'
'copy.below_min': '{amount} Minimum'
'copy.below_min_amount': 'Amount is below Min'
'copy.blockchain_fee': 'Blockchain.com Fee'
'copy.buy_upgrade': 'Buy More Crypto'
'copy.cancel': 'Cancel'
'copy.canceled': 'Canceled'
Expand Down Expand Up @@ -687,7 +688,7 @@ type MessagesType = {
'identityverification.verify.resubmit.reason.intro': 'Main reasons for this to happen are'
'identityverification.verify.resubmit.reason.quality': 'We were unable to read the images you submitted due to image quality'
'identityverification.verify.supportedcountries': 'Is my country supported?'
'layouts.wallet.footer.looking_product' : 'Looking for another product?'
'layouts.wallet.footer.looking_product': 'Looking for another product?'
'layouts.wallet.footer.select_product': 'Select a Product ->'
'layouts.wallet.header.Sign Out': 'Sign Out'
'layouts.wallet.header.announcements.emailreminder': 'Confirm your email address to properly secure your account'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,14 @@ const Success: React.FC<InjectedFormProps<{ form: string }, Props> & Props> = (p
<TopRow>
<RowIcon>
<RowText>
<FormattedMessage id='copy.card_fee' defaultMessage='Card Fee' />
{props.isFlexiblePricingModel ? (
<FormattedMessage
id='copy.blockchain_fee'
defaultMessage='Blockchain.com Fee'
/>
) : (
<FormattedMessage id='copy.card_fee' defaultMessage='Card Fee' />
)}
</RowText>
<IconWrapper>
<Icon
Expand Down

0 comments on commit 7f5e99d

Please sign in to comment.