aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--package.json1
-rw-r--r--ui/app/config.js7
2 files changed, 0 insertions, 8 deletions
diff --git a/package.json b/package.json
index 67e3ba659..4093751b6 100644
--- a/package.json
+++ b/package.json
@@ -62,7 +62,6 @@
"react-hyperscript": "^2.2.2",
"react-markdown": "^2.3.0",
"react-redux": "^4.4.5",
- "react-select": "^1.0.0-beta14",
"react-tooltip-component": "^0.3.0",
"readable-stream": "^2.1.2",
"redux": "^3.0.5",
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'),
- // ]
),
])
}