From 89a0f75942f8175ee553b44b8a96800e581f13a5 Mon Sep 17 00:00:00 2001
From: Dan J Miller <danjm.com@gmail.com>
Date: Fri, 9 Oct 2020 12:30:16 -0230
Subject: [PATCH] Corrects the copy in the amount receiving tooltip of the
 swaps sort-list (#9533)

---
 app/_locales/en/messages.json                               | 6 +++---
 .../pages/swaps/select-quote-popover/sort-list/sort-list.js | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json
index 6969c2431..37a7e15ad 100644
--- a/app/_locales/en/messages.json
+++ b/app/_locales/en/messages.json
@@ -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"
   },
diff --git a/ui/app/pages/swaps/select-quote-popover/sort-list/sort-list.js b/ui/app/pages/swaps/select-quote-popover/sort-list/sort-list.js
index 2339da5b8..64ec8ffce 100644
--- a/ui/app/pages/swaps/select-quote-popover/sort-list/sort-list.js
+++ b/ui/app/pages/swaps/select-quote-popover/sort-list/sort-list.js
@@ -77,7 +77,7 @@ export default function SortList ({
               <span>{t('swapReceiving')}</span>
               <InfoTooltip
                 position="bottom"
-                contentText={t('swapMinimumAmountReceivingInfoTooltip')}
+                contentText={t('swapReceivingInfoTooltip')}
               />
               <ToggleArrows />
             </div>