aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-09-19 06:41:25 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-10-21 12:51:37 +0800
commitc6a3d00d80e1fa6ca1426246d9a3e03b7ad4ecbb (patch)
treedc8d97b83e8cd571a04112c400a13914c2ba5f8e /ui/app/app.js
parente88baff2eec33de41faa0fa1ee0b3416117f9c96 (diff)
downloadtangerine-wallet-browser-c6a3d00d80e1fa6ca1426246d9a3e03b7ad4ecbb.tar.gz
tangerine-wallet-browser-c6a3d00d80e1fa6ca1426246d9a3e03b7ad4ecbb.tar.zst
tangerine-wallet-browser-c6a3d00d80e1fa6ca1426246d9a3e03b7ad4ecbb.zip
Fix merge conflict; separate onboarding buy screen
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js15
1 files changed, 8 insertions, 7 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index 36241b942..bd0ccb0a2 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -46,10 +46,9 @@ function mapStateToProps (state) {
accounts,
address,
keyrings,
- isMascara,
isInitialized,
noActiveNotices,
- seedWords
+ seedWords,
} = state.metamask
const selected = address || Object.keys(accounts)[0]
@@ -405,8 +404,8 @@ App.prototype.renderDropdown = function () {
])
}
-App.prototype.renderLoadingIndicator = function({ isLoading, isLoadingNetwork, loadMessage }) {
- const { isMascara } = this.props;
+App.prototype.renderLoadingIndicator = function ({ isLoading, isLoadingNetwork, loadMessage }) {
+ const { isMascara } = this.props
return isMascara
? null
@@ -541,9 +540,11 @@ App.prototype.renderPrimary = function () {
case 'buyEth':
log.debug('rendering buy ether screen')
- return isMascara
- ? h(MascaraBuyEtherScreen, {key: 'buyEthView'})
- : h(BuyView, {key: 'buyEthView'})
+ return h(BuyView, {key: 'buyEthView'})
+
+ case 'onboardingBuyEth':
+ log.debug('rendering onboarding buy ether screen')
+ return h(MascaraBuyEtherScreen, {key: 'buyEthView'})
case 'qr':
log.debug('rendering show qr screen')