mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix sender-to-recipient export and non-existent translation key.
This commit is contained in:
parent
3d3bd0eaf0
commit
ca5bce477e
@ -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),
|
||||
}
|
||||
module.exports = connect()(SenderToRecipient)
|
||||
|
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user