diff --git a/src/languages/en.ts b/src/languages/en.ts
index 0b304537627a..b046116b74a5 100755
--- a/src/languages/en.ts
+++ b/src/languages/en.ts
@@ -2341,6 +2341,13 @@ const translations = {
},
finishStep: {
connect: 'Connect bank account',
+ letsFinish: "Let's finish in chat!",
+ thanksFor:
+ "Thanks for those details. A dedicated support agent will now review your information. We'll circle back if we need anything else from you, but in the meantime, you can chat with us any time if you have questions.",
+ iHaveA: 'I have a question',
+ enable2FA: 'Enable two-factor authentication (2FA) to prevent fraud',
+ weTake: 'We take your security seriously. Please set up 2FA now to add an extra layer of protection to your account.',
+ secure: 'Secure your account',
},
reimbursementAccountLoadingAnimation: {
oneMoment: 'One moment',
diff --git a/src/languages/es.ts b/src/languages/es.ts
index c570a0e2742e..c5966da57c74 100644
--- a/src/languages/es.ts
+++ b/src/languages/es.ts
@@ -2365,7 +2365,14 @@ const translations = {
},
},
finishStep: {
- connect: 'Conectar cuenta bancaria',
+ connect: 'Connect bank account',
+ letsFinish: "Let's finish in chat!",
+ thanksFor:
+ "Thanks for those details. A dedicated support agent will now review your information. We'll circle back if we need anything else from you, but in the meantime, you can chat with us any time if you have questions.",
+ iHaveA: 'I have a question',
+ enable2FA: 'Enable two-factor authentication (2FA) to prevent fraud',
+ weTake: 'We take your security seriously. Please set up 2FA now to add an extra layer of protection to your account.',
+ secure: 'Secure your account',
},
reimbursementAccountLoadingAnimation: {
oneMoment: 'Un momento',
diff --git a/src/pages/ReimbursementAccount/NonUSD/Finish/index.tsx b/src/pages/ReimbursementAccount/NonUSD/Finish/index.tsx
index 69c0e9e77a45..dd6438335d79 100644
--- a/src/pages/ReimbursementAccount/NonUSD/Finish/index.tsx
+++ b/src/pages/ReimbursementAccount/NonUSD/Finish/index.tsx
@@ -1,18 +1,32 @@
import React from 'react';
+import {View} from 'react-native';
+import {useOnyx} from 'react-native-onyx';
+import Button from '@components/Button';
import HeaderWithBackButton from '@components/HeaderWithBackButton';
+import * as Expensicons from '@components/Icon/Expensicons';
+import * as Illustrations from '@components/Icon/Illustrations';
import ScreenWrapper from '@components/ScreenWrapper';
import ScrollView from '@components/ScrollView';
+import Section from '@components/Section';
+import Text from '@components/Text';
import useLocalize from '@hooks/useLocalize';
import useThemeStyles from '@hooks/useThemeStyles';
import Navigation from '@navigation/Navigation';
+import * as Report from '@userActions/Report';
+import ONYXKEYS from '@src/ONYXKEYS';
+import ROUTES from '@src/ROUTES';
function Finish() {
const styles = useThemeStyles();
const {translate} = useLocalize();
+ const [reimbursementAccount] = useOnyx(ONYXKEYS.REIMBURSEMENT_ACCOUNT);
+ const policyID = reimbursementAccount?.achData?.policyID ?? '-1';
+
const handleBackButtonPress = () => {
Navigation.goBack();
};
+ const handleNavigateToConciergeChat = () => Report.navigateToConciergeChat(true);
return (
-
+
+
+ {translate('finishStep.thanksFor')}
+
+
+ {
+ Navigation.navigate(ROUTES.SETTINGS_2FA.getRoute(ROUTES.BANK_ACCOUNT_WITH_STEP_TO_OPEN.getRoute('', policyID)));
+ },
+ icon: Expensicons.Shield,
+ shouldShowRightIcon: true,
+ iconRight: Expensicons.NewWindow,
+ wrapperStyle: [styles.cardMenuItem],
+ },
+ ]}
+ >
+
+ {translate('finishStep.weTake')}
+
+
+
);
}