aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-12-21 07:54:59 +0800
committerDan Finlay <dan@danfinlay.com>2016-12-21 08:07:24 +0800
commit11c1004a41a9287c13ef15f28805863aab9fdea9 (patch)
treecfb61bd5e041eec0dfaf19f8f5e85ecc16476299
parent553f1769a099ac037cdda489295a96f7dd2c100f (diff)
downloadtangerine-wallet-browser-11c1004a41a9287c13ef15f28805863aab9fdea9.tar.gz
tangerine-wallet-browser-11c1004a41a9287c13ef15f28805863aab9fdea9.tar.zst
tangerine-wallet-browser-11c1004a41a9287c13ef15f28805863aab9fdea9.zip
Linted
-rw-r--r--ui/app/app.js4
-rw-r--r--ui/app/components/notice.js (renamed from ui/app/notice.js)2
-rw-r--r--ui/lib/lost-accounts-notice.js2
3 files changed, 3 insertions, 5 deletions
diff --git a/ui/app/app.js b/ui/app/app.js
index 886bc987a..e98e635a2 100644
--- a/ui/app/app.js
+++ b/ui/app/app.js
@@ -16,7 +16,7 @@ const AccountDetailScreen = require('./account-detail')
const SendTransactionScreen = require('./send')
const ConfirmTxScreen = require('./conf-tx')
// notice
-const NoticeScreen = require('./notice')
+const NoticeScreen = require('./components/notice')
const lostAccountsNotice = require('../lib/lost-accounts-notice')
// other views
const ConfigScreen = require('./config')
@@ -374,7 +374,7 @@ App.prototype.renderPrimary = function () {
return h(NoticeScreen, {
notice: props.lastUnreadNotice,
key: 'NoticeScreen',
- onConfirm: () => props.dispatch(actions.markNoticeRead(notice)),
+ onConfirm: () => props.dispatch(actions.markNoticeRead(props.lastUnreadNotice)),
})
} else if (props.lostAccounts && props.lostAccounts.length > 0) {
return h(NoticeScreen, {
diff --git a/ui/app/notice.js b/ui/app/components/notice.js
index 92c171c4d..00db734d7 100644
--- a/ui/app/notice.js
+++ b/ui/app/components/notice.js
@@ -2,8 +2,6 @@ const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const ReactMarkdown = require('react-markdown')
-const connect = require('react-redux').connect
-const actions = require('./actions')
const linker = require('extension-link-enabler')
const findDOMNode = require('react-dom').findDOMNode
diff --git a/ui/lib/lost-accounts-notice.js b/ui/lib/lost-accounts-notice.js
index 49b055778..948b13db6 100644
--- a/ui/lib/lost-accounts-notice.js
+++ b/ui/lib/lost-accounts-notice.js
@@ -18,6 +18,6 @@ These accounts have been marked as "Loose" so they will be easy to recognize in
For more information, please read [our blog post.][1]
[1]: https://medium.com/metamask/metamask-3-migration-guide-914b79533cdd#.7d8ktj4h3
- `
+ `,
}
}