|
@@ -13,11 +13,10 @@ export const CompleteUserRegistration: FC = () => {
|
|
|
<p className="alert alert-success">
|
|
<p className="alert alert-success">
|
|
|
<span>{t('login.Registration successful')}</span>
|
|
<span>{t('login.Registration successful')}</span>
|
|
|
</p>
|
|
</p>
|
|
|
- <Link href='/login' prefetch={false}>
|
|
|
|
|
- <a>
|
|
|
|
|
- <i className="icon-login mr-1" />{t('Sign in is here')}
|
|
|
|
|
- </a>
|
|
|
|
|
- </Link>
|
|
|
|
|
|
|
+ {/* If the transition source is "/login", use <a /> tag since the transition will not occur if next/link is used. */}
|
|
|
|
|
+ <a href='/login'>
|
|
|
|
|
+ <i className="icon-login mr-1" />{t('Sign in is here')}
|
|
|
|
|
+ </a>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|