diff --git a/client/login/magic-login/emailed-login-link-successfully-jetpack-connect.tsx b/client/login/magic-login/emailed-login-link-successfully-jetpack-connect.tsx index ab6c3ec2908b..07d4321bc700 100644 --- a/client/login/magic-login/emailed-login-link-successfully-jetpack-connect.tsx +++ b/client/login/magic-login/emailed-login-link-successfully-jetpack-connect.tsx @@ -63,7 +63,7 @@ const EmailedLoginLinkSuccessfullyJetpackConnect: FC< Props > = ( {

{ translate( - "Didn't get the code? Check your spam folder or {{button}}resend the email{{/button}}", + "Didn't get the email? Check your spam folder, or {{button}}resend the email{{/button}}. Wrong email or account? {{link}}Use a different account{{/link}}.", { components: { button: ( @@ -73,17 +73,11 @@ const EmailedLoginLinkSuccessfullyJetpackConnect: FC< Props > = ( { onClick={ onResendEmail } /> ), + link: , }, } ) }

-

- { translate( 'Wrong email or account? {{link}}Use a different account{{/link}}', { - components: { - link: , - }, - } ) } -

); diff --git a/client/login/magic-login/style.scss b/client/login/magic-login/style.scss index e64b0669c305..8a7b30b5953f 100644 --- a/client/login/magic-login/style.scss +++ b/client/login/magic-login/style.scss @@ -113,10 +113,6 @@ .magic-login__log-in-link { color: var( --studio-jetpack-green-60, #007117 ); } - - > p { - margin-bottom: 4px; - } } .layout.is-wpcom-magic-login { diff --git a/client/login/magic-login/verify-login-code.jsx b/client/login/magic-login/verify-login-code.jsx index fd569f861fb5..9f041d6f9200 100644 --- a/client/login/magic-login/verify-login-code.jsx +++ b/client/login/magic-login/verify-login-code.jsx @@ -251,7 +251,7 @@ const VerifyLoginCode = ( {

{ translate( - "Didn't get the code? Check your spam folder or {{button}}resend the email{{/button}}", + "Didn't get the code? Check your spam folder, or {{button}}resend the email{{/button}}. Wrong email or account? {{link}}Use a different account{{/link}}.", { components: { button: ( @@ -262,17 +262,11 @@ const VerifyLoginCode = ( { disabled={ isRedirecting } /> ), + link: , }, } ) }

-

- { translate( 'Wrong email or account? {{link}}Use a different account{{/link}}', { - components: { - link: , - }, - } ) } -

);