aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/notice.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/notice.js')
-rw-r--r--ui/app/components/notice.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/ui/app/components/notice.js b/ui/app/components/notice.js
index a999ffd88..bb7e0814c 100644
--- a/ui/app/components/notice.js
+++ b/ui/app/components/notice.js
@@ -1,13 +1,19 @@
const inherits = require('util').inherits
const Component = require('react').Component
+const PropTypes = require('prop-types')
const h = require('react-hyperscript')
const ReactMarkdown = require('react-markdown')
const linker = require('extension-link-enabler')
const findDOMNode = require('react-dom').findDOMNode
-const connect = require('../metamask-connect')
+const connect = require('react-redux').connect
+
+Notice.contextTypes = {
+ t: PropTypes.func,
+}
module.exports = connect()(Notice)
+
inherits(Notice, Component)
function Notice () {
Component.call(this)
@@ -111,7 +117,7 @@ Notice.prototype.render = function () {
style: {
marginTop: '18px',
},
- }, this.props.t('accept')),
+ }, this.context.t('accept')),
])
)
}