aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/app.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-09-29 23:40:57 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-10-02 09:58:57 +0800
commitff64fe98dde7746775396cbf94d63a1a0e91d069 (patch)
tree77ffc60ab81fa133a3553b1476ca363de3366641 /ui/app/app.js
parent7c4d8c45624ef840b8806589b47997e7c7c396f3 (diff)
downloadtangerine-wallet-browser-ff64fe98dde7746775396cbf94d63a1a0e91d069.tar.gz
tangerine-wallet-browser-ff64fe98dde7746775396cbf94d63a1a0e91d069.tar.zst
tangerine-wallet-browser-ff64fe98dde7746775396cbf94d63a1a0e91d069.zip
Shapeshift deposit tx modal.
Diffstat (limited to 'ui/app/app.js')
-rw-r--r--ui/app/app.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index cf9850f9f..583497cb3 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -26,7 +26,6 @@ const InfoScreen = require('./info')
const Loading = require('./components/loading')
const NetworkIndicator = require('./components/network')
const BuyView = require('./components/buy-button-subview')
-const QrView = require('./components/qr-code')
const HDCreateVaultComplete = require('./keychains/hd/create-vault-complete')
const HDRestoreVaultScreen = require('./keychains/hd/restore-vault')
const RevealSeedConfirmation = require('./keychains/hd/recover-seed/confirmation')
@@ -72,7 +71,6 @@ function mapStateToProps (state) {
lastUnreadNotice: state.metamask.lastUnreadNotice,
lostAccounts: state.metamask.lostAccounts,
frequentRpcList: state.metamask.frequentRpcList || [],
- Qr: state.appState.Qr,
// state needed to get account dropdown temporarily rendering from app bar
identities,
@@ -372,37 +370,6 @@ App.prototype.renderPrimary = function () {
log.debug('rendering buy ether screen')
return h(BuyView, {key: 'buyEthView'})
- case 'qr':
- log.debug('rendering show qr screen')
- return h('div', {
- style: {
- position: 'absolute',
- height: '100%',
- top: '0px',
- left: '0px',
- },
- }, [
- h('i.fa.fa-arrow-left.fa-lg.cursor-pointer.color-orange', {
- onClick: () => props.dispatch(actions.backToAccountDetail(props.activeAddress)),
- style: {
- marginLeft: '10px',
- marginTop: '50px',
- },
- }),
- h('div', {
- style: {
- position: 'absolute',
- left: '44px',
- width: '285px',
- },
- }, [
- h(QrView, {
- key: 'qr',
- Qr: props.Qr,
- }),
- ]),
- ])
-
default:
log.debug('rendering default, account detail screen')
return h(MainContainer, {key: 'account-detail'})