From adf3614adb2e0ebeba6ee65c3cc6ae77a3a01aab Mon Sep 17 00:00:00 2001 From: michaeltout Date: Fri, 4 Dec 2020 20:59:08 +0100 Subject: [PATCH] Fix claimed KMD interest display bug --- src/containers/Coin/Overview/Overview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/Coin/Overview/Overview.js b/src/containers/Coin/Overview/Overview.js index a5469089..5dff2326 100644 --- a/src/containers/Coin/Overview/Overview.js +++ b/src/containers/Coin/Overview/Overview.js @@ -184,7 +184,7 @@ class Overview extends Component { if (item.amount !== "??" && amount.num.lt(0)) { subtitle = "me"; AvatarImg = TX_LOGOS.interest; - amount.num = amount.num.mul(new MathableNumber("-1").num); + amount.num = amount.num.mul(-1); } else { AvatarImg = TX_LOGOS.self; subtitle = gasFees ? "gas" : "fees";