From 690644abde30d0b103d28245bb44b56d6b560217 Mon Sep 17 00:00:00 2001 From: Jack Mallers Date: Thu, 26 Oct 2017 13:14:50 -0500 Subject: [PATCH] fix(channelform): fix channel form title to include step # --- app/components/ChannelForm/StepThree.scss | 1 - app/components/ChannelForm/StepTwo.scss | 1 - app/reducers/channelform.js | 8 ++++---- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/app/components/ChannelForm/StepThree.scss b/app/components/ChannelForm/StepThree.scss index 129c193f..394d0cc0 100644 --- a/app/components/ChannelForm/StepThree.scss +++ b/app/components/ChannelForm/StepThree.scss @@ -28,7 +28,6 @@ } label { - margin-left: -25px; height: 200px; color: $main; diff --git a/app/components/ChannelForm/StepTwo.scss b/app/components/ChannelForm/StepTwo.scss index 129c193f..394d0cc0 100644 --- a/app/components/ChannelForm/StepTwo.scss +++ b/app/components/ChannelForm/StepTwo.scss @@ -28,7 +28,6 @@ } label { - margin-left: -25px; height: 200px; color: $main; diff --git a/app/reducers/channelform.js b/app/reducers/channelform.js index 7883cf7f..c0cd4d56 100644 --- a/app/reducers/channelform.js +++ b/app/reducers/channelform.js @@ -96,13 +96,13 @@ channelFormSelectors.channelFormHeader = createSelector( step => { switch (step) { case 1: - return 'Select a peer' + return 'Step 1: Select a peer' case 2: - return 'Set your local amount' + return 'Step 2: Set your local amount' case 3: - return 'Set your push amount' + return 'Step 3: Set your push amount' default: - return 'Create your channel' + return 'Step 4: Create your channel' } } )