Skip to content

Commit

Permalink
added feature flag on button
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamsinghbundela committed Jul 14, 2023
1 parent 875af11 commit c2123b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/new-signup/input.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</div>

<div class='signup-action__btn'>
{{#if this.dev}}
{{#if @dev}}
<Button
@data-test-btn='signup'
@onClick={{@onClick}}
Expand Down
3 changes: 3 additions & 0 deletions app/templates/new-signup.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<NewSignup::Input
@onClick={{this.changeStepToThree}}
@currentStep={{this.currentStep}}
@dev={{this.dev}}
@onChange={{this.handleInputChange}}
@isButtonDisabled={{this.isButtonDisabled}}
@isLoading={{this.isLoading}}
Expand All @@ -21,6 +22,7 @@
<NewSignup::Input
@onClick={{this.changeStepToFour}}
@currentStep={{this.currentStep}}
@dev={{this.dev}}
@onChange={{this.handleInputChange}}
@isButtonDisabled={{this.isButtonDisabled}}
@isLoading={{this.isLoading}}
Expand All @@ -32,6 +34,7 @@
<NewSignup::Input
@onClick={{this.changeStepToFive}}
@currentStep={{this.currentStep}}
@dev={{this.dev}}
@onChange={{this.handleInputChange}}
@isButtonDisabled={{this.isButtonDisabled}}
@isLoading={{this.isLoading}}
Expand Down

0 comments on commit c2123b4

Please sign in to comment.