Skip to content
This repository has been archived by the owner on Apr 28, 2023. It is now read-only.

Commit

Permalink
fix: show fee as percentage and not relative amount (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael1011 authored Sep 4, 2019
1 parent 50326d0 commit aa6ec8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/swaptab/swaptabwrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit aa6ec8f

Please sign in to comment.