diff options
author | Frankie <frankie.pangilinan@consensys.net> | 2016-09-13 08:27:14 +0800 |
---|---|---|
committer | Frankie <frankie.pangilinan@consensys.net> | 2016-09-13 08:27:14 +0800 |
commit | 218f380d874f0efef4b87803c3f9cbd508391a9e (patch) | |
tree | a3b1fac7ded99c4194c85aacbe932453e81ded14 /ui/app/reducers | |
parent | b8f75e387a91135b870c9f268977445c8e0877a4 (diff) | |
download | tangerine-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')
-rw-r--r-- | ui/app/reducers/app.js | 5 |
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, }, }) |