aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-content/send-amount-row/send-amount-row.container.js
diff options
context:
space:
mode:
authorSara Reynolds <sarareynolds@Saras-MacBook-Pro-2.local>2018-06-23 06:05:50 +0800
committerSara Reynolds <sarareynolds@Saras-MacBook-Pro-2.local>2018-06-30 02:54:49 +0800
commitad6c454fd5d59c7f47edf515f0eb8aec549a8683 (patch)
tree71d1a0db44eecdc9ae7f401cd2d32e91be220b16 /ui/app/components/send_/send-content/send-amount-row/send-amount-row.container.js
parent9f5ee94b6937c741684de5e70ac0f9fea5f50226 (diff)
downloadtangerine-wallet-browser-ad6c454fd5d59c7f47edf515f0eb8aec549a8683.tar.gz
tangerine-wallet-browser-ad6c454fd5d59c7f47edf515f0eb8aec549a8683.tar.zst
tangerine-wallet-browser-ad6c454fd5d59c7f47edf515f0eb8aec549a8683.zip
fixes #4623
Diffstat (limited to 'ui/app/components/send_/send-content/send-amount-row/send-amount-row.container.js')
-rw-r--r--ui/app/components/send_/send-content/send-amount-row/send-amount-row.container.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/send_/send-content/send-amount-row/send-amount-row.container.js b/ui/app/components/send_/send-content/send-amount-row/send-amount-row.container.js
index bbbf56971..b816d948f 100644
--- a/ui/app/components/send_/send-content/send-amount-row/send-amount-row.container.js
+++ b/ui/app/components/send_/send-content/send-amount-row/send-amount-row.container.js
@@ -2,7 +2,7 @@ import { connect } from 'react-redux'
import {
getAmountConversionRate,
getConversionRate,
- getConvertedCurrency,
+ getCurrentCurrency,
getGasTotal,
getPrimaryCurrency,
getSelectedToken,
@@ -31,7 +31,7 @@ function mapStateToProps (state) {
amountConversionRate: getAmountConversionRate(state),
balance: getSendFromBalance(state),
conversionRate: getConversionRate(state),
- convertedCurrency: getConvertedCurrency(state),
+ convertedCurrency: getCurrentCurrency(state),
gasTotal: getGasTotal(state),
inError: sendAmountIsInError(state),
primaryCurrency: getPrimaryCurrency(state),