aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Ukustov <sergey@ukstv.me>2017-09-30 00:47:40 +0800
committerSergey Ukustov <sergey@ukstv.me>2017-09-30 00:53:03 +0800
commit82d1f391986ac6f7cb7d9029f50d44b5a8c9442b (patch)
tree70a90899961bde2307f640b6e0b4ee4a2b946de6
parentc2b8dada91c90788dcd81a0318c52a66b4b769d1 (diff)
downloadtangerine-wallet-browser-82d1f391986ac6f7cb7d9029f50d44b5a8c9442b.tar.gz
tangerine-wallet-browser-82d1f391986ac6f7cb7d9029f50d44b5a8c9442b.tar.zst
tangerine-wallet-browser-82d1f391986ac6f7cb7d9029f50d44b5a8c9442b.zip
Respect code style
-rw-r--r--ui/app/components/typed-message-renderer.js3
-rw-r--r--ui/app/conf-tx.js2
2 files changed, 2 insertions, 3 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
diff --git a/ui/app/conf-tx.js b/ui/app/conf-tx.js
index f93fc2373..cb1afedfe 100644
--- a/ui/app/conf-tx.js
+++ b/ui/app/conf-tx.js
@@ -117,7 +117,7 @@ ConfirmTxScreen.prototype.render = function () {
signTypedMessage: this.signTypedMessage.bind(this, txData),
cancelMessage: this.cancelMessage.bind(this, txData),
cancelPersonalMessage: this.cancelPersonalMessage.bind(this, txData),
- cancelTypedMessage: this.cancelTypedMessage.bind(this, txData)
+ cancelTypedMessage: this.cancelTypedMessage.bind(this, txData),
}),
])
)