From ca5bce477e9acdd5f8457b99de2c32a7b4f26e33 Mon Sep 17 00:00:00 2001 From: Dan Date: Thu, 22 Mar 2018 00:54:44 -0230 Subject: Fix sender-to-recipient export and non-existent translation key. --- ui/app/components/sender-to-recipient.js | 6 ++---- ui/app/components/tx-list.js | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) (limited to 'ui/app') 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) diff --git a/ui/app/components/tx-list.js b/ui/app/components/tx-list.js index 7c2da30fe..5f09d887e 100644 --- a/ui/app/components/tx-list.js +++ b/ui/app/components/tx-list.js @@ -110,7 +110,7 @@ TxList.prototype.renderTransactionListItem = function (transaction, conversionRa if (isUnapproved) { opts.onClick = () => showConfTxPage({ id: transactionId }) - opts.transactionStatus = this.props.t('Not Started') + opts.transactionStatus = this.props.t('notStarted') } else if (transactionHash) { opts.onClick = () => this.view(transactionHash, transactionNetworkId) } -- cgit v1.2.3