diff options
Stop setting 'currentCurrency' and use local state for active currency in send.js
Diffstat (limited to 'ui/app/components/send/eth-fee-display.js')
-rw-r--r-- | ui/app/components/send/eth-fee-display.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/send/eth-fee-display.js b/ui/app/components/send/eth-fee-display.js index 3dcb711ce..8b4cec16c 100644 --- a/ui/app/components/send/eth-fee-display.js +++ b/ui/app/components/send/eth-fee-display.js @@ -13,7 +13,7 @@ function EthFeeDisplay () { EthFeeDisplay.prototype.render = function () { const { - currentCurrency, + activeCurrency, conversionRate, gas, gasPrice, @@ -22,7 +22,7 @@ EthFeeDisplay.prototype.render = function () { return h(EthBalance, { value: getTxFeeBn(gas, gasPrice, blockGasLimit), - currentCurrency, + currentCurrency: activeCurrency, conversionRate, showFiat: false, hideTooltip: true, |