diff options
Diffstat (limited to 'ui/app')
-rw-r--r-- | ui/app/config.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ui/app/config.js b/ui/app/config.js index 868ee3213..620e54069 100644 --- a/ui/app/config.js +++ b/ui/app/config.js @@ -4,8 +4,6 @@ const h = require('react-hyperscript') const connect = require('react-redux').connect const actions = require('./actions') const currencies = require('./conversion-util').availableCurrencies.rows -const Select = require('react-select') - module.exports = connect(mapStateToProps)(ConfigScreen) function mapStateToProps (state) { @@ -116,11 +114,6 @@ function currentConversionInformation (metamaskState, state) { }, currencies.map((currency) => { return h('option', {key: currency.code, value: currency.code}, `${currency.code} - ${currency.name}`) }) - // [ - // h('option', {key: 'USD', value: 'USD'}, 'USD'), - // h('option', {key: 'EUR', value: 'EUR'}, 'EUR'), - // h('option', {key: 'JPY', value: 'JPY'}, 'JPY'), - // ] ), ]) } |