1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Corrects the copy in the amount receiving tooltip of the swaps sort-list (#9533)

This commit is contained in:
Dan J Miller 2020-10-09 12:30:16 -02:30 committed by GitHub
parent 549140f6f5
commit 89a0f75942
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1686,9 +1686,6 @@
"message": "A service fee of $1% is automatically factored into each quote, which supports ongoing development to make MetaMask even better.",
"description": "Provides information about the fee that metamask takes for swaps. $1 is a decimal number."
},
"swapMinimumAmountReceivingInfoTooltip": {
"message": "This is the minimum amount you will receive. You may receive more depending on slippage."
},
"swapNQuotesAvailable": {
"message": "$1 quotes available",
"description": "$1 is the number of quotes that the user can select from when opening the list of quotes on the 'view quote' screen"
@ -1738,6 +1735,9 @@
"swapReceiving": {
"message": "Receiving"
},
"swapReceivingInfoTooltip": {
"message": "This is an estimate. The exact amount depends on slippage."
},
"swapRequestForQuotation": {
"message": "Request for quotation"
},

View File

@ -77,7 +77,7 @@ export default function SortList ({
<span>{t('swapReceiving')}</span>
<InfoTooltip
position="bottom"
contentText={t('swapMinimumAmountReceivingInfoTooltip')}
contentText={t('swapReceivingInfoTooltip')}
/>
<ToggleArrows />
</div>