diff options
Fix sender-to-recipient export and non-existent translation key.
Diffstat (limited to 'ui/app/components/sender-to-recipient.js')
-rw-r--r-- | ui/app/components/sender-to-recipient.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ui/app/components/sender-to-recipient.js b/ui/app/components/sender-to-recipient.js index 590769b02..4c3881668 100644 --- a/ui/app/components/sender-to-recipient.js +++ b/ui/app/components/sender-to-recipient.js @@ -59,11 +59,9 @@ class SenderToRecipient extends Component { SenderToRecipient.propTypes = { senderName: PropTypes.string, senderAddress: PropTypes.string, - recipientName: PropTypes.string, + recipientName: PropTypes.string, recipientAddress: PropTypes.string, t: PropTypes.func, } -module.exports = { - AccountDropdowns: connect()(SenderToRecipient), -}
\ No newline at end of file +module.exports = connect()(SenderToRecipient) |