aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/typed-message-renderer.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/components/typed-message-renderer.js b/ui/app/components/typed-message-renderer.js
index 50e8da02c..b7d1572c2 100644
--- a/ui/app/components/typed-message-renderer.js
+++ b/ui/app/components/typed-message-renderer.js
@@ -1,7 +1,6 @@
const Component = require('react').Component
const h = require('react-hyperscript')
const inherits = require('util').inherits
-const ethUtil = require('ethereumjs-util')
const extend = require('xtend')
module.exports = TypedMessageRenderer
@@ -36,7 +35,7 @@ function renderTypedData(values) {
return values.map(function (value) {
return h('div', {}, [
h('strong', {style: {display: 'block', fontWeight: 'bold', textTransform: 'capitalize'}}, String(value.name) + ':'),
- h('div', {}, value.value)
+ h('div', {}, value.value),
])
})
} \ No newline at end of file