diff --git a/src/js/components/Settings/VoterEmailAddressEntry.jsx b/src/js/components/Settings/VoterEmailAddressEntry.jsx index fdf18a969..3e0a65c65 100644 --- a/src/js/components/Settings/VoterEmailAddressEntry.jsx +++ b/src/js/components/Settings/VoterEmailAddressEntry.jsx @@ -234,8 +234,8 @@ class VoterEmailAddressEntry extends Component { }; onBlur = () => { - const { voterEmailAddressIsValid } = this.state; - if (!voterEmailAddressIsValid) { + const { voterEmailAddress } = this.state; + if (!voterEmailAddress) { // Only hide the phone verification button if the user has not "unlocked" the button used to send the message. this.setState({ displayEmailVerificationButton: false, diff --git a/src/js/components/Settings/VoterPhoneVerificationEntry.jsx b/src/js/components/Settings/VoterPhoneVerificationEntry.jsx index b69934490..d4c3db193 100644 --- a/src/js/components/Settings/VoterPhoneVerificationEntry.jsx +++ b/src/js/components/Settings/VoterPhoneVerificationEntry.jsx @@ -272,8 +272,8 @@ class VoterPhoneVerificationEntry extends Component { } onBlur = () => { - const { voterSMSPhoneNumberIsValid } = this.state; - if (!voterSMSPhoneNumberIsValid) { + const { voterSMSPhoneNumber } = this.state; + if (!voterSMSPhoneNumber) { // Only hide the phone verification button if the user has not "unlocked" the button used to send the message. this.setState({ displayPhoneVerificationButton: false,