Shun Miyazawa 3 ani în urmă
părinte
comite
923b0b0616

+ 4 - 5
packages/app/src/components/CompleteUserRegistration.tsx

@@ -13,11 +13,10 @@ export const CompleteUserRegistration: FC = () => {
           <p className="alert alert-success">
             <span>{t('login.Registration successful')}</span>
           </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>