aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/reducers/app.js
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-09-13 08:27:14 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-09-13 08:27:14 +0800
commit218f380d874f0efef4b87803c3f9cbd508391a9e (patch)
treea3b1fac7ded99c4194c85aacbe932453e81ded14 /ui/app/reducers/app.js
parentb8f75e387a91135b870c9f268977445c8e0877a4 (diff)
downloadtangerine-wallet-browser-218f380d874f0efef4b87803c3f9cbd508391a9e.tar
tangerine-wallet-browser-218f380d874f0efef4b87803c3f9cbd508391a9e.tar.gz
tangerine-wallet-browser-218f380d874f0efef4b87803c3f9cbd508391a9e.tar.bz2
tangerine-wallet-browser-218f380d874f0efef4b87803c3f9cbd508391a9e.tar.lz
tangerine-wallet-browser-218f380d874f0efef4b87803c3f9cbd508391a9e.tar.xz
tangerine-wallet-browser-218f380d874f0efef4b87803c3f9cbd508391a9e.tar.zst
tangerine-wallet-browser-218f380d874f0efef4b87803c3f9cbd508391a9e.zip
Add qrcode-npm to package.json and swap out Qr Code generator api for node-module
Diffstat (limited to 'ui/app/reducers/app.js')
-rw-r--r--ui/app/reducers/app.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js
index a6cd9ca1b..0d83fbdba 100644
--- a/ui/app/reducers/app.js
+++ b/ui/app/reducers/app.js
@@ -496,9 +496,10 @@ function reduceApp (state, action) {
return extend(appState, {
qrRequested: true,
transForward: true,
+
Qr: {
message: action.value.message,
- image: action.value.qr,
+ // image: action.value.qr,
data: action.value.data,
},
})
@@ -512,7 +513,7 @@ function reduceApp (state, action) {
transForward: true,
Qr: {
message: action.value.message,
- image: action.value.qr,
+ // image: action.value.qr,
data: action.value.data,
},
})