aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/sender-to-recipient.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-20 03:23:06 +0800
committerDan <danjm.com@gmail.com>2018-03-20 03:23:06 +0800
commit2ddc2cc1fbe5249f70d80e2a74146cb87dcc8421 (patch)
treef9aef3593a296118b83ab363f1551646281d06f8 /ui/app/components/sender-to-recipient.js
parent4d1793b0ec364277765a8c8ec6026da904d51055 (diff)
downloadtangerine-wallet-browser-2ddc2cc1fbe5249f70d80e2a74146cb87dcc8421.tar.gz
tangerine-wallet-browser-2ddc2cc1fbe5249f70d80e2a74146cb87dcc8421.tar.zst
tangerine-wallet-browser-2ddc2cc1fbe5249f70d80e2a74146cb87dcc8421.zip
Lint fixes.
Diffstat (limited to 'ui/app/components/sender-to-recipient.js')
-rw-r--r--ui/app/components/sender-to-recipient.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/app/components/sender-to-recipient.js b/ui/app/components/sender-to-recipient.js
index 530c4abae..02b6d96ea 100644
--- a/ui/app/components/sender-to-recipient.js
+++ b/ui/app/components/sender-to-recipient.js
@@ -1,5 +1,6 @@
const { Component } = require('react')
const h = require('react-hyperscript')
+const connect = require('../metamask-connect')
const PropTypes = require('prop-types')
const t = require('../../i18n-helper').getMessage
const Identicon = require('./identicon')
@@ -40,6 +41,9 @@ class SenderToRecipient extends Component {
SenderToRecipient.propTypes = {
senderName: PropTypes.string,
senderAddress: PropTypes.string,
+ localeMessages: PropTypes.object,
}
-module.exports = SenderToRecipient
+module.exports = {
+ AccountDropdowns: connect()(SenderToRecipient),
+} \ No newline at end of file