Skip to content

Commit

Permalink
feat(seamless limits): fixed typos on swap flow
Browse files Browse the repository at this point in the history
  • Loading branch information
milan-bc committed Nov 30, 2021
1 parent f90c54c commit d7963c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
"copy.swap_in_wallet": "Your {coin} is now in your Wallet.",
"copy.swap_instantly_exchange": "Instantly exchange your crypto.",
"copy.swap_maximum_amount": "The maximum amount of {coin} you can swap from this wallet is {amount}.",
"copy.swap_minimum_amount": "To avoid uncesssary fees and network slipage, the minimum amount for this pair is {amount}.",
"copy.swap_minimum_amount": "To avoid unnecessary fees and network slippage, the minimum amount for this pair is {amount}.",
"copy.swap_name_address": "We need to know your name and address to comply with local laws.",
"copy.swap_not_enough_funds": "This wallet does not have enough funds for a swap.",
"copy.swap_start": "Start Swapping",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ type MessagesType = {
'copy.swap_verify_id': 'Verify your identity to increase how much you can Swap everyday.'
'copy.view_prices': 'View Prices'
'copy.swap_your_crypto': 'Swap Your Crypto'
'copy.swap_minimum_amount': 'To avoid uncesssary fees and network slipage, the minimum amount for this pair is {amount}.'
'copy.swap_minimum_amount': 'To avoid unnecessary fees and network slippage, the minimum amount for this pair is {amount}.'
'copy.swap_maximum_amount': 'The maximum amount of {coin} you can swap from this wallet is {amount}.'
'copy.viewTransaction': 'View Transaction'
'copy.viewTransactions': 'View Transactions'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ const Checkout: React.FC<InjectedFormProps<{}, Props> & Props> = (props) => {
{amtError === 'BELOW_MIN' && (
<FormattedMessage
id='copy.swap_minimum_amount'
defaultMessage='To avoid uncesssary fees and network slipage, the minimum amount for this pair is {amount}.'
defaultMessage='To avoid unnecessary fees and network slippage, the minimum amount for this pair is {amount}.'
values={{
amount:
fix === 'FIAT'
Expand Down

0 comments on commit d7963c6

Please sign in to comment.