aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui/app/components/qr-code.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-11-16 01:35:18 +0800
committerDan <danjm.com@gmail.com>2017-12-05 10:38:23 +0800
commitf7ad015f5bd3b037b73d7792d0a09d7e0382a511 (patch)
treef17d0975fc410216404fd1b8c75dd2ec9dc2a69c /old-ui/app/components/qr-code.js
parent7f795240706c013dc4a9ece0e9c9e33897c7fc71 (diff)
downloadtangerine-wallet-browser-f7ad015f5bd3b037b73d7792d0a09d7e0382a511.tar.gz
tangerine-wallet-browser-f7ad015f5bd3b037b73d7792d0a09d7e0382a511.tar.zst
tangerine-wallet-browser-f7ad015f5bd3b037b73d7792d0a09d7e0382a511.zip
Use newui actions in old-ui
Diffstat (limited to 'old-ui/app/components/qr-code.js')
-rw-r--r--old-ui/app/components/qr-code.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/old-ui/app/components/qr-code.js b/old-ui/app/components/qr-code.js
index 06b9aed9b..fa38dcd92 100644
--- a/old-ui/app/components/qr-code.js
+++ b/old-ui/app/components/qr-code.js
@@ -25,6 +25,7 @@ function QrCodeView () {
QrCodeView.prototype.render = function () {
const props = this.props
const Qr = props.Qr
+ console.log(`QrCodeView Qr`, Qr);
const address = `${isHexPrefixed(Qr.data) ? 'ethereum:' : ''}${Qr.data}`
const qrImage = qrCode(4, 'M')
qrImage.addData(address)