aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/currency-display/currency-display.container.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/currency-display/currency-display.container.js')
-rw-r--r--ui/app/components/currency-display/currency-display.container.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/currency-display/currency-display.container.js b/ui/app/components/currency-display/currency-display.container.js
index a6d307e3..db4017eb 100644
--- a/ui/app/components/currency-display/currency-display.container.js
+++ b/ui/app/components/currency-display/currency-display.container.js
@@ -13,7 +13,7 @@ const mapStateToProps = state => {
}
const mergeProps = (stateProps, dispatchProps, ownProps) => {
- const { nativeCurrency, currentCurrency, /* conversionRate, */ ...restStateProps } = stateProps
+ const { nativeCurrency, currentCurrency, conversionRate, ...restStateProps } = stateProps
const {
value,
numberOfDecimals = 2,
@@ -32,7 +32,7 @@ const mergeProps = (stateProps, dispatchProps, ownProps) => {
value,
fromCurrency: nativeCurrency,
toCurrency,
- conversionRate: 0,
+ conversionRate,
numberOfDecimals,
toDenomination: denomination,
}),