diff --git a/src/languages/en.ts b/src/languages/en.ts
index 817f06f6b344..63d68b8e19dd 100755
--- a/src/languages/en.ts
+++ b/src/languages/en.ts
@@ -1190,8 +1190,10 @@ export default {
toGetStarted: 'Add a bank account and issue corporate cards, reimburse expenses, collect invoice payments, and pay bills, all from one place.',
plaidBodyCopy: 'Give your employees an easier way to pay - and get paid back - for company expenses.',
checkHelpLine: 'Your routing number and account number can be found on a check for the account.',
- validateAccountError:
- 'In order to finish setting up your bank account, you must validate your account. Please check your email to validate your account, and return here to finish up!',
+ validateAccountError: {
+ phrase1: 'Hold up! We need you to validate your account first. To do so, ',
+ phrase2: 'sign back in with a magic code',
+ },
hasPhoneLoginError: 'To add a verified bank account please ensure your primary login is a valid email and try again. You can add your phone number as a secondary login.',
hasBeenThrottledError: 'There was an error adding your bank account. Please wait a few minutes and try again.',
hasCurrencyError: 'Oops! It appears that your workspace currency is set to a different currency than USD. To proceed, please set it to USD and try again',
diff --git a/src/languages/es.ts b/src/languages/es.ts
index b219021daa0f..296f804365b3 100644
--- a/src/languages/es.ts
+++ b/src/languages/es.ts
@@ -1205,8 +1205,10 @@ export default {
toGetStarted: 'Añade una cuenta bancaria y emite tarjetas corporativas, reembolsa gastos y cobra y paga facturas, todo desde un mismo lugar.',
plaidBodyCopy: 'Ofrezca a sus empleados una forma más sencilla de pagar - y recuperar - los gastos de la empresa.',
checkHelpLine: 'Su número de ruta y número de cuenta se pueden encontrar en un cheque de la cuenta bancaria.',
- validateAccountError:
- 'Para terminar de configurar tu cuenta bancaria, debes validar tu cuenta de Expensify. Por favor, revisa tu correo electrónico para validar tu cuenta y vuelve aquí para continuar.',
+ validateAccountError: {
+ phrase1: 'Hold up! We need you to validate your account first. To do so, ',
+ phrase2: 'sign back in with a magic code',
+ },
hasPhoneLoginError:
'Para añadir una cuenta bancaria verificada, asegúrate de que tu nombre de usuario principal sea un correo electrónico válido y vuelve a intentarlo. Puedes añadir tu número de teléfono como nombre de usuario secundario.',
hasBeenThrottledError: 'Se produjo un error al intentar añadir tu cuenta bancaria. Por favor, espera unos minutos e inténtalo de nuevo.',
diff --git a/src/pages/ReimbursementAccount/BankAccountStep.js b/src/pages/ReimbursementAccount/BankAccountStep.js
index 898af1ce7108..13ebe646ad06 100644
--- a/src/pages/ReimbursementAccount/BankAccountStep.js
+++ b/src/pages/ReimbursementAccount/BankAccountStep.js
@@ -25,6 +25,8 @@ import CONFIG from '@src/CONFIG';
import CONST from '@src/CONST';
import ONYXKEYS from '@src/ONYXKEYS';
import ROUTES from '@src/ROUTES';
+import variables from '@styles/variables';
+import * as Session from '@userActions/Session';
import BankAccountManualStep from './BankAccountManualStep';
import BankAccountPlaidStep from './BankAccountPlaidStep';
import StepPropTypes from './StepPropTypes';
@@ -162,7 +164,11 @@ function BankAccountStep(props) {
fill={theme.danger}
/>
- {props.translate('bankAccount.validateAccountError')}
+
+ {props.translate('bankAccount.validateAccountError.phrase1')}
+ {props.translate('bankAccount.validateAccountError.phrase2')}
+ .
+
)}