From 6a8977d9c9baf2036fd2974df4db6cbae4cb8ee8 Mon Sep 17 00:00:00 2001 From: michael1011 Date: Wed, 4 Sep 2019 09:36:16 +0200 Subject: [PATCH] fix: show fee as percentage and not relative amount --- src/components/swaptab/swaptabwrapper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/swaptab/swaptabwrapper.js b/src/components/swaptab/swaptabwrapper.js index 1725e82..8f76307 100644 --- a/src/components/swaptab/swaptabwrapper.js +++ b/src/components/swaptab/swaptabwrapper.js @@ -316,7 +316,7 @@ class SwapTabWrapper extends React.Component { render() { const { feeAmount } = this.state; - const feePercentage = this.props.fees.percentages[this.getSymbol()]; + const feePercentage = this.props.fees.percentages[this.getSymbol()] * 100; return this.props.children({ feePercentage,