aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/main-container.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2017-10-23 13:40:03 +0800
committerAlexander Tseung <alextsg@gmail.com>2017-10-23 13:40:03 +0800
commit2c032e0df44a2d589aae62d3fc532df82441580b (patch)
tree7c6e3f79ac79f8ec99873cf9f51aafa1ec79ad8e /ui/app/main-container.js
parent8f3b762461ada222f82089e686a61183dd167428 (diff)
downloadtangerine-wallet-browser-2c032e0df44a2d589aae62d3fc532df82441580b.tar.gz
tangerine-wallet-browser-2c032e0df44a2d589aae62d3fc532df82441580b.tar.zst
tangerine-wallet-browser-2c032e0df44a2d589aae62d3fc532df82441580b.zip
Update settings screen to new UI
Diffstat (limited to 'ui/app/main-container.js')
-rw-r--r--ui/app/main-container.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/main-container.js b/ui/app/main-container.js
index eaaff8517..6e2342c2b 100644
--- a/ui/app/main-container.js
+++ b/ui/app/main-container.js
@@ -3,7 +3,7 @@ const h = require('react-hyperscript')
const inherits = require('util').inherits
const AccountAndTransactionDetails = require('./account-and-transaction-details')
const HDRestoreVaultScreen = require('./keychains/hd/restore-vault')
-const ConfigScreen = require('./config')
+const Settings = require('./settings')
const UnlockScreen = require('./unlock')
module.exports = MainContainer
@@ -38,7 +38,7 @@ MainContainer.prototype.render = function () {
case 'config':
log.debug('rendering config screen from unlock screen.')
contents = {
- component: ConfigScreen,
+ component: Settings,
key: 'config',
}
break