aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/token-cell.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/token-cell.js')
-rw-r--r--ui/app/components/token-cell.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/token-cell.js b/ui/app/components/token-cell.js
index 81e92b301..879dc01d1 100644
--- a/ui/app/components/token-cell.js
+++ b/ui/app/components/token-cell.js
@@ -12,7 +12,7 @@ function TokenCell () {
TokenCell.prototype.render = function () {
const props = this.props
- const { address, symbol, string } = props
+ const { address, symbol, string, network } = props
log.info({ address, symbol, string })
return (
@@ -21,9 +21,11 @@ TokenCell.prototype.render = function () {
h(Identicon, {
diameter: 50,
address,
+ network,
}),
h('h3', `${string || 0} ${symbol}`),
])
)
}
+