diff --git a/src/languages/en.js b/src/languages/en.js
index a37511d00a16..878ed36a843d 100755
--- a/src/languages/en.js
+++ b/src/languages/en.js
@@ -542,7 +542,6 @@ export default {
requestorStep: {
headerTitle: 'Personal information',
subtitle: 'Please provide your personal information.',
- financialRegulations: 'Financial regulation and bank rules require us to validate the identity of any individual setting up bank accounts on behalf of a company. ',
learnMore: 'Learn more',
isMyDataSafe: 'Is my data safe?',
onFidoConditions: 'By continuing with the request to add this bank account, you confirm that you have read, understand and accept ',
diff --git a/src/languages/es.js b/src/languages/es.js
index 6a14382bad6f..3ee92a8e0ecf 100644
--- a/src/languages/es.js
+++ b/src/languages/es.js
@@ -544,7 +544,6 @@ export default {
requestorStep: {
headerTitle: 'Información personal',
subtitle: 'Dé más información sobre tí.',
- financialRegulations: 'Las leyes fiscales y el reglamento bancario nos obliga a verificar la identidad de todo individuo que desee añadir una cuenta bancaria representando a una compañía. ',
learnMore: 'Más información',
isMyDataSafe: '¿Están seguros mis datos?',
onFidoConditions: 'Al continuar con la solicitud de añadir esta cuenta bancaria, confirma que ha leído, entiende y acepta ',
diff --git a/src/pages/ReimbursementAccount/RequestorStep.js b/src/pages/ReimbursementAccount/RequestorStep.js
index 8e933e0543df..60d8ab10e568 100644
--- a/src/pages/ReimbursementAccount/RequestorStep.js
+++ b/src/pages/ReimbursementAccount/RequestorStep.js
@@ -1,6 +1,6 @@
import React from 'react';
import lodashGet from 'lodash/get';
-import {View} from 'react-native';
+import {View, Linking} from 'react-native';
import {withOnyx} from 'react-native-onyx';
import styles from '../../styles/styles';
import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize';
@@ -205,31 +205,31 @@ class RequestorStep extends React.Component {
errorText={this.props.reimbursementAccount.error === this.props.translate('requestorStep.isControllingOfficerError')
? this.props.translate('requestorStep.isControllingOfficerError') : ''}
/>
-
- {this.props.translate('requestorStep.financialRegulations')}
-
{this.props.translate('requestorStep.onFidoConditions')}
- Linking.openURL('https://onfido.com/facial-scan-policy-and-release/')}
+ style={[styles.textMicro, styles.link]}
+ accessibilityRole="link"
>
{`${this.props.translate('requestorStep.onFidoFacialScan')}`}
-
+
{', '}
- Linking.openURL('https://onfido.com/privacy/')}
+ style={[styles.textMicro, styles.link]}
+ accessibilityRole="link"
>
{`${this.props.translate('common.privacyPolicy')}`}
-
+
{` ${this.props.translate('common.and')} `}
- Linking.openURL('https://onfido.com/terms-of-service/')}
+ style={[styles.textMicro, styles.link]}
+ accessibilityRole="link"
>
{`${this.props.translate('common.termsOfService')}`}
-
+
)}