From da2527ddb4a1d78eba1126785dfe1583161a80fc Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Tue, 16 Aug 2016 13:23:28 -0700 Subject: Remove react-select as dependency. --- package.json | 1 - ui/app/config.js | 7 ------- 2 files changed, 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'), - // ] ), ]) } -- cgit v1.2.3