aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send_/send-header/send-header.component.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/send_/send-header/send-header.component.js')
-rw-r--r--ui/app/components/send_/send-header/send-header.component.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/send_/send-header/send-header.component.js b/ui/app/components/send_/send-header/send-header.component.js
index 99adfc7e8..30cb5c749 100644
--- a/ui/app/components/send_/send-header/send-header.component.js
+++ b/ui/app/components/send_/send-header/send-header.component.js
@@ -5,9 +5,9 @@ import PageContainerHeader from '../../page-container/page-container-header.comp
export default class SendHeader extends Component {
static propTypes = {
- isToken: PropTypes.bool,
clearSend: PropTypes.func,
goHome: PropTypes.func,
+ isToken: PropTypes.bool,
};
render () {
@@ -15,14 +15,14 @@ export default class SendHeader extends Component {
return (
<PageContainerHeader
- title={isToken ? this.context.t('sendTokens') : this.context.t('sendETH')}
- subtitle={this.context.t('onlySendToEtherAddress')}
onClose={() => {
clearSend()
goHome()
}}
+ subtitle={this.context.t('onlySendToEtherAddress')}
+ title={isToken ? this.context.t('sendTokens') : this.context.t('sendETH')}
/>
- );
+ )
}
}