Skip to content

Commit

Permalink
Merge pull request #3829 from pbnjcub/bugfix/wv-61
Browse files Browse the repository at this point in the history
Bugfix/wv 61 Added updated text for phone verification code MERGE READY
  • Loading branch information
DaleMcGrew authored Feb 18, 2024
2 parents b42b701 + ef17046 commit f493612
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,15 @@ class SettingsVerifySecretCode extends Component {
<Title condensed={condensed}>Code Verification</Title>
<Subtitle>A 6-digit code has been sent to</Subtitle>
<PhoneSubtitle>{voterPhoneNumber || voterEmailAddress}</PhoneSubtitle>
{(voterEmailAddress) && (

{(voterEmailAddress) ? (
<Subtitle>If you haven&apos;t received the code in 30 seconds, please check your spam folder and mark the email as &apos;Not Spam&apos;.</Subtitle>
) : (
<>
{(voterPhoneNumber) && (
<Subtitle>If you haven&apos;t received the code within 30 seconds, please verify the number you entered.</Subtitle>
)}
</>
)}
<InputContainer condensed={condensed}>
<OutlinedInput
Expand Down

0 comments on commit f493612

Please sign in to comment.