aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/sender-to-recipient/sender-to-recipient.component.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/ui/app/components/sender-to-recipient/sender-to-recipient.component.js b/ui/app/components/sender-to-recipient/sender-to-recipient.component.js
index 65102a7ad..7d3436dc3 100644
--- a/ui/app/components/sender-to-recipient/sender-to-recipient.component.js
+++ b/ui/app/components/sender-to-recipient/sender-to-recipient.component.js
@@ -97,7 +97,9 @@ export default class SenderToRecipient extends PureComponent {
onClick={() => {
this.setState({ recipientAddressCopied: true })
copyToClipboard(checksummedRecipientAddress)
- onRecipientClick()
+ if (onRecipientClick) {
+ onRecipientClick()
+ }
}}
>
{ this.renderRecipientIdenticon() }
@@ -164,7 +166,9 @@ export default class SenderToRecipient extends PureComponent {
onClick={() => {
this.setState({ senderAddressCopied: true })
copyToClipboard(checksummedSenderAddress)
- onSenderClick()
+ if (onSenderClick) {
+ onSenderClick()
+ }
}}
>
{ this.renderSenderIdenticon() }