Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Asherda committed Dec 4, 2020
2 parents d556c5b + 3d083ac commit a09f1d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/Coin/Overview/Overview.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit a09f1d3

Please sign in to comment.