aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/sender-to-recipient.js
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-20 02:53:54 +0800
committerDan <danjm.com@gmail.com>2018-03-20 03:09:37 +0800
commit09260f9c5e0b2c460a214f00b87c8fafe0470419 (patch)
tree80643438ba93a09cef581010e7d27b7feb4a09d0 /ui/app/components/sender-to-recipient.js
parent57338200247fa6520a58c9b4a9625edb0382aba1 (diff)
downloadtangerine-wallet-browser-09260f9c5e0b2c460a214f00b87c8fafe0470419.tar
tangerine-wallet-browser-09260f9c5e0b2c460a214f00b87c8fafe0470419.tar.gz
tangerine-wallet-browser-09260f9c5e0b2c460a214f00b87c8fafe0470419.tar.bz2
tangerine-wallet-browser-09260f9c5e0b2c460a214f00b87c8fafe0470419.tar.lz
tangerine-wallet-browser-09260f9c5e0b2c460a214f00b87c8fafe0470419.tar.xz
tangerine-wallet-browser-09260f9c5e0b2c460a214f00b87c8fafe0470419.tar.zst
tangerine-wallet-browser-09260f9c5e0b2c460a214f00b87c8fafe0470419.zip
Fixed t() calls where localeMessages is missing; and fix incorrect connect reference.
Diffstat (limited to 'ui/app/components/sender-to-recipient.js')
-rw-r--r--ui/app/components/sender-to-recipient.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/sender-to-recipient.js b/ui/app/components/sender-to-recipient.js
index a0e90a37f..530c4abae 100644
--- a/ui/app/components/sender-to-recipient.js
+++ b/ui/app/components/sender-to-recipient.js
@@ -30,7 +30,7 @@ class SenderToRecipient extends Component {
]),
h('.sender-to-recipient__recipient', [
h('i.fa.fa-file-text-o'),
- h('.sender-to-recipient__name.sender-to-recipient__recipient-name', t('newContract')),
+ h('.sender-to-recipient__name.sender-to-recipient__recipient-name', t(this.props.localeMessages, 'newContract')),
]),
])
)