aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2018-03-06 01:03:46 +0800
committerGitHub <noreply@github.com>2018-03-06 01:03:46 +0800
commit1bd18cebd7e08edbbcf35407b962e71dcd2c3399 (patch)
tree4cbf19a137bdafaeb3eb90cf669f8a1724e77846 /ui/app/app.js
parent0d97ff221017b78ccfa02defdb7a52ad701981a5 (diff)
downloadtangerine-wallet-browser-1bd18cebd7e08edbbcf35407b962e71dcd2c3399.tar
tangerine-wallet-browser-1bd18cebd7e08edbbcf35407b962e71dcd2c3399.tar.gz
tangerine-wallet-browser-1bd18cebd7e08edbbcf35407b962e71dcd2c3399.tar.bz2
tangerine-wallet-browser-1bd18cebd7e08edbbcf35407b962e71dcd2c3399.tar.lz
tangerine-wallet-browser-1bd18cebd7e08edbbcf35407b962e71dcd2c3399.tar.xz
tangerine-wallet-browser-1bd18cebd7e08edbbcf35407b962e71dcd2c3399.tar.zst
tangerine-wallet-browser-1bd18cebd7e08edbbcf35407b962e71dcd2c3399.zip
Fixes shapeshift coin selection dropdown. (#3416)
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index bfa8d8aa7..d243e72a4 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -90,6 +90,7 @@ function mapStateToProps (state) {
isMouseUser: state.appState.isMouseUser,
betaUI: state.metamask.featureFlags.betaUI,
isRevealingSeedWords: state.metamask.isRevealingSeedWords,
+ Qr: state.appState.Qr,
// state needed to get account dropdown temporarily rendering from app bar
identities,
@@ -368,6 +369,7 @@ App.prototype.renderPrimary = function () {
isOnboarding,
betaUI,
isRevealingSeedWords,
+ Qr,
} = props
const isMascaraOnboarding = isMascara && isOnboarding
const isBetaUIOnboarding = betaUI && isOnboarding && !props.isPopup && !isRevealingSeedWords
@@ -508,7 +510,7 @@ App.prototype.renderPrimary = function () {
width: '285px',
},
}, [
- h(QrView, {key: 'qr'}),
+ h(QrView, {key: 'qr', Qr}),
]),
])