diff options
author | kumavis <kumavis@users.noreply.github.com> | 2018-03-28 10:42:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-28 10:42:42 +0800 |
commit | b324a9c29506661c18034df37f2cb17e66972915 (patch) | |
tree | 8d122128b5e43251a2275d6f2108178ab74897ff /ui/app/components/notice.js | |
parent | 74ac3bb2a7130675a10e1701d569b2c35a948f8f (diff) | |
parent | 871edfe12ad37545c596e2e926afc458c0efa559 (diff) | |
download | tangerine-wallet-browser-b324a9c29506661c18034df37f2cb17e66972915.tar tangerine-wallet-browser-b324a9c29506661c18034df37f2cb17e66972915.tar.gz tangerine-wallet-browser-b324a9c29506661c18034df37f2cb17e66972915.tar.bz2 tangerine-wallet-browser-b324a9c29506661c18034df37f2cb17e66972915.tar.lz tangerine-wallet-browser-b324a9c29506661c18034df37f2cb17e66972915.tar.xz tangerine-wallet-browser-b324a9c29506661c18034df37f2cb17e66972915.tar.zst tangerine-wallet-browser-b324a9c29506661c18034df37f2cb17e66972915.zip |
Merge branch 'master' into i3471-checkbalanceonconfirmscreen
Diffstat (limited to 'ui/app/components/notice.js')
-rw-r--r-- | ui/app/components/notice.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/notice.js b/ui/app/components/notice.js index 8b0ce1e8b..a999ffd88 100644 --- a/ui/app/components/notice.js +++ b/ui/app/components/notice.js @@ -4,9 +4,9 @@ const h = require('react-hyperscript') const ReactMarkdown = require('react-markdown') const linker = require('extension-link-enabler') const findDOMNode = require('react-dom').findDOMNode -const t = require('../../i18n') +const connect = require('../metamask-connect') -module.exports = Notice +module.exports = connect()(Notice) inherits(Notice, Component) function Notice () { @@ -111,7 +111,7 @@ Notice.prototype.render = function () { style: { marginTop: '18px', }, - }, t('accept')), + }, this.props.t('accept')), ]) ) } |