aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorClark, Jason (Contractor) <Jason_Clark@comcast.com>2017-11-24 09:33:44 +0800
committerClark, Jason (Contractor) <Jason_Clark@comcast.com>2017-11-24 09:33:44 +0800
commit90fc4812bc75857581e56eb6d63484dbc5c48cb1 (patch)
treeb80fbcf3c7c2772edf747852542127488fa59c11 /ui/app/components
parent28409294c3cd70ddbc9a9f3467d402c89e110261 (diff)
downloadtangerine-wallet-browser-90fc4812bc75857581e56eb6d63484dbc5c48cb1.tar
tangerine-wallet-browser-90fc4812bc75857581e56eb6d63484dbc5c48cb1.tar.gz
tangerine-wallet-browser-90fc4812bc75857581e56eb6d63484dbc5c48cb1.tar.bz2
tangerine-wallet-browser-90fc4812bc75857581e56eb6d63484dbc5c48cb1.tar.lz
tangerine-wallet-browser-90fc4812bc75857581e56eb6d63484dbc5c48cb1.tar.xz
tangerine-wallet-browser-90fc4812bc75857581e56eb6d63484dbc5c48cb1.tar.zst
tangerine-wallet-browser-90fc4812bc75857581e56eb6d63484dbc5c48cb1.zip
incremental commit
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/identicon.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/components/identicon.js b/ui/app/components/identicon.js
index d30b7cd56..63f3087a4 100644
--- a/ui/app/components/identicon.js
+++ b/ui/app/components/identicon.js
@@ -4,6 +4,7 @@ const inherits = require('util').inherits
const isNode = require('detect-node')
const findDOMNode = require('react-dom').findDOMNode
const jazzicon = require('jazzicon')
+const blockies = require('blockies')
const iconFactoryGen = require('../../lib/icon-factory')
const iconFactory = iconFactoryGen(jazzicon)
@@ -18,7 +19,7 @@ function IdenticonComponent () {
IdenticonComponent.prototype.render = function () {
var props = this.props
- const { className = '', address } = props
+ const { className = '', address, useBlockie } = props
var diameter = props.diameter || this.defaultDiameter
return address