aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/pages/send
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2019-04-18 11:11:04 +0800
committerDan J Miller <danjm.com@gmail.com>2019-04-18 11:11:04 +0800
commit3519e90ffdec61589359f44556994f42492fffd8 (patch)
treec406c627b2b750259535a092a9fd3d721ca12788 /ui/app/pages/send
parented23801490dfd6a1c0f162f9887e50686bb7f20d (diff)
downloadtangerine-wallet-browser-3519e90ffdec61589359f44556994f42492fffd8.tar
tangerine-wallet-browser-3519e90ffdec61589359f44556994f42492fffd8.tar.gz
tangerine-wallet-browser-3519e90ffdec61589359f44556994f42492fffd8.tar.bz2
tangerine-wallet-browser-3519e90ffdec61589359f44556994f42492fffd8.tar.lz
tangerine-wallet-browser-3519e90ffdec61589359f44556994f42492fffd8.tar.xz
tangerine-wallet-browser-3519e90ffdec61589359f44556994f42492fffd8.tar.zst
tangerine-wallet-browser-3519e90ffdec61589359f44556994f42492fffd8.zip
Make height consistent on all row in send-content (#6480)
* Update all send-content row to 54px height * Remove header subtitle * Remove tests that check for send screen subheader
Diffstat (limited to 'ui/app/pages/send')
-rw-r--r--ui/app/pages/send/send-header/send-header.component.js1
-rw-r--r--ui/app/pages/send/send-header/tests/send-header-component.test.js2
2 files changed, 0 insertions, 3 deletions
diff --git a/ui/app/pages/send/send-header/send-header.component.js b/ui/app/pages/send/send-header/send-header.component.js
index 02bda383e..76e35494a 100644
--- a/ui/app/pages/send/send-header/send-header.component.js
+++ b/ui/app/pages/send/send-header/send-header.component.js
@@ -25,7 +25,6 @@ export default class SendHeader extends Component {
return (
<PageContainerHeader
onClose={() => this.onClose()}
- subtitle={this.context.t(...this.props.subtitleParams)}
title={this.context.t(this.props.titleKey)}
/>
)
diff --git a/ui/app/pages/send/send-header/tests/send-header-component.test.js b/ui/app/pages/send/send-header/tests/send-header-component.test.js
index 4a5575e9f..91ac7e343 100644
--- a/ui/app/pages/send/send-header/tests/send-header-component.test.js
+++ b/ui/app/pages/send/send-header/tests/send-header-component.test.js
@@ -57,10 +57,8 @@ describe('SendHeader Component', function () {
it('should pass the correct props to PageContainerHeader', () => {
const {
onClose,
- subtitle,
title,
} = wrapper.find(PageContainerHeader).props()
- assert.equal(subtitle, 'mockSubtitleKeymockVal')
assert.equal(title, 'mockTitleKey')
assert.equal(SendHeader.prototype.onClose.callCount, 0)
onClose()