Skip to content

Commit

Permalink
Merge pull request wevote#3883 from smcvey7/WV-238
Browse files Browse the repository at this point in the history
[WV-328] Sign Up: Signed in when clicking the "Try a different email" button MERGE READY
  • Loading branch information
DaleMcGrew authored Apr 12, 2024
2 parents db20847 + ac0f9d2 commit bb4d2f0
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ class SettingsVerifySecretCode extends Component {
// One case is this: clicking "Try a different number" after you have entered a full and correct
// verification code, signs you in. But attempts to change/remove
// this "handleDigit6Blur" function caused other, worse problems.

// 2024-04-10 NOTE: This function is no longer being used in order to address WV-328.
const {
cancelingVerifyModal, digit1, digit2, digit3, digit4, digit5, digit6,
voterPhoneNumber, voterVerifySecretCodeSubmitted,
Expand Down Expand Up @@ -631,7 +633,8 @@ class SettingsVerifySecretCode extends Component {
maxLength={1}
onChange={this.onDigit6Change}
onFocus={this.handleFocus}
onBlur={this.handleDigit6Blur}
// This is a fix for WV-328. Changes handleDigit6Blur to handleBlur.
onBlur={this.handleBlur}
onPaste={() => this.onPaste}
onKeyDown={this.handleKeyDown6}
type="tel"
Expand Down

0 comments on commit bb4d2f0

Please sign in to comment.