Skip to content

Commit

Permalink
email verification front end
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmeeusen committed Jun 18, 2022
1 parent d0518de commit c212a50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion page-components/Settings/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const EmailVerify = ({ user }) => {
<Container flex={1}>
<p>
<strong>Note:</strong> <span>Your email</span> (
<span className={styles.link}>{user.email}</span>) is unverified.
<span className={styles.link}>{user.emailOriginal}</span>) is unverified.
</p>
</Container>
<Spacer size={1} axis="horizontal" />
Expand Down Expand Up @@ -204,6 +204,7 @@ export const Settings = () => {
router.replace('/login');
}
}, [router, data, error]);

return (
<Wrapper className={styles.wrapper}>
<Spacer size={2} axis="vertical" />
Expand Down

0 comments on commit c212a50

Please sign in to comment.