Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
imhson committed Aug 25, 2023
1 parent 0cf932d commit fcf735b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -155,15 +155,15 @@ const App = ({ Component, pageProps }: AppProps) => {
<Image src={Mail} alt='' className='mx-auto' />
<p className=' font-medium text-center w-full max-w-[500px] mx-auto'>
{t('A verification link has been sent to')}{' '}
<span className='text-second-color font-bold'>{email}</span>.
<span className='text-second-color font-bold'>{account?.email || email}</span>.
{t('Please click on the link to verify your email account.')}
</p>
<div className='flex flex-col text-center text-xs leading-[14px]'>
<p className=' font-medium text-center w-full max-w-[500px] mx-auto'>
{t('Have not received any email')}?{' '}
<span
className='text-second-color font-bold cursor-pointer'
onClick={() => resendVerifyEmail(email, 'update_email')}>
onClick={() => resendVerifyEmail(account?.email || email, 'update_email')}>
{t('Click here')}
</span>{' '}
{t('to resend verification link')}
Expand Down

0 comments on commit fcf735b

Please sign in to comment.