aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/config.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-08-17 04:21:16 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-08-17 04:21:16 +0800
commit58e3042a3b105d9481cddc3f1c6253ccc6f19565 (patch)
treee40be302605511dbc387a53f247050e4d89cf819 /ui/app/config.js
parent6e51a5aa757af11d51f27404ac0736e835c3eeec (diff)
downloadtangerine-wallet-browser-58e3042a3b105d9481cddc3f1c6253ccc6f19565.tar.gz
tangerine-wallet-browser-58e3042a3b105d9481cddc3f1c6253ccc6f19565.tar.zst
tangerine-wallet-browser-58e3042a3b105d9481cddc3f1c6253ccc6f19565.zip
Remove logging. Clean up duplicate entries in currency list.
Diffstat (limited to 'ui/app/config.js')
-rw-r--r--ui/app/config.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/config.js b/ui/app/config.js
index c86d377bb..868ee3213 100644
--- a/ui/app/config.js
+++ b/ui/app/config.js
@@ -4,7 +4,7 @@ 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')
+const Select = require('react-select')
module.exports = connect(mapStateToProps)(ConfigScreen)
@@ -112,7 +112,6 @@ function currentConversionInformation (metamaskState, state) {
var newFiat = element.value
state.dispatch(actions.setCurrentFiat(newFiat))
},
- value: currentFiat,
defaultValue: currentFiat,
}, currencies.map((currency) => {
return h('option', {key: currency.code, value: currency.code}, `${currency.code} - ${currency.name}`)