diff options
Diffstat (limited to 'ui/app/components/currency-input/currency-input.container.js')
-rw-r--r-- | ui/app/components/currency-input/currency-input.container.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/currency-input/currency-input.container.js b/ui/app/components/currency-input/currency-input.container.js index a5d40730..84d06b6f 100644 --- a/ui/app/components/currency-input/currency-input.container.js +++ b/ui/app/components/currency-input/currency-input.container.js @@ -1,6 +1,6 @@ import { connect } from 'react-redux' import CurrencyInput from './currency-input.component' -import { DEX } from '../../constants/common' +import { DXN } from '../../constants/common' const mapStateToProps = state => { const { dekusan: { nativeCurrency, currentCurrency, conversionRate } } = state @@ -15,7 +15,7 @@ const mapStateToProps = state => { const mergeProps = (stateProps, dispatchProps, ownProps) => { const { currentCurrency } = stateProps const { useFiat } = ownProps - const suffix = useFiat ? currentCurrency.toUpperCase() : DEX + const suffix = useFiat ? currentCurrency.toUpperCase() : DXN return { ...stateProps, |