Skip to content

Commit

Permalink
Merge pull request #341 from factly/fix/auth-verification
Browse files Browse the repository at this point in the history
fixed the error in verification flow
  • Loading branch information
vsumit89 authored Feb 17, 2023
2 parents dde7873 + 899f5e9 commit 075cf79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/pages/verification/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function Verification() {
>
Verify your email
</h2>
{state === 'sent_email' && ui?.messages?.[0]?.text (
{state === 'sent_email' && ui?.messages?.[0]?.text && (
<Alert
message={ui?.messages?.[0]?.text}
type={ui?.messages?.[0]?.type !== 'error' ? 'success' : 'error'}
Expand Down

0 comments on commit 075cf79

Please sign in to comment.