diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-08-17 04:21:16 +0800 |
---|---|---|
committer | Kevin Serrano <kevgagser@gmail.com> | 2016-08-17 04:21:16 +0800 |
commit | 58e3042a3b105d9481cddc3f1c6253ccc6f19565 (patch) | |
tree | e40be302605511dbc387a53f247050e4d89cf819 /ui/app/config.js | |
parent | 6e51a5aa757af11d51f27404ac0736e835c3eeec (diff) | |
download | tangerine-wallet-browser-58e3042a3b105d9481cddc3f1c6253ccc6f19565.tar tangerine-wallet-browser-58e3042a3b105d9481cddc3f1c6253ccc6f19565.tar.gz tangerine-wallet-browser-58e3042a3b105d9481cddc3f1c6253ccc6f19565.tar.bz2 tangerine-wallet-browser-58e3042a3b105d9481cddc3f1c6253ccc6f19565.tar.lz tangerine-wallet-browser-58e3042a3b105d9481cddc3f1c6253ccc6f19565.tar.xz 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.js | 3 |
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}`) |