From 7953a981b5d2d24dbf50abefd93a7970f5cadee6 Mon Sep 17 00:00:00 2001 From: Kamil Owczarz Date: Tue, 28 Nov 2023 15:48:26 +0100 Subject: [PATCH 1/2] Use new form component --- src/pages/AddPersonalBankAccountPage.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pages/AddPersonalBankAccountPage.js b/src/pages/AddPersonalBankAccountPage.js index 43e1847e554a..33df66d81f6e 100644 --- a/src/pages/AddPersonalBankAccountPage.js +++ b/src/pages/AddPersonalBankAccountPage.js @@ -6,6 +6,7 @@ import _ from 'underscore'; import AddPlaidBankAccount from '@components/AddPlaidBankAccount'; import ConfirmationPage from '@components/ConfirmationPage'; import Form from '@components/Form'; +import FormProvider from '@components/Form/FormProvider'; import HeaderWithBackButton from '@components/HeaderWithBackButton'; import ScreenWrapper from '@components/ScreenWrapper'; import useLocalize from '@hooks/useLocalize'; @@ -113,7 +114,7 @@ function AddPersonalBankAccountPage({personalBankAccount, plaidData}) { onButtonPress={() => exitFlow(true)} /> ) : ( -
-
+ )} ); From 0450fbf620583d0030924edb7d37546f7a968af6 Mon Sep 17 00:00:00 2001 From: Kamil Owczarz Date: Tue, 28 Nov 2023 16:13:14 +0100 Subject: [PATCH 2/2] Lint fix --- src/pages/AddPersonalBankAccountPage.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/AddPersonalBankAccountPage.js b/src/pages/AddPersonalBankAccountPage.js index 33df66d81f6e..a4d75a7c73a0 100644 --- a/src/pages/AddPersonalBankAccountPage.js +++ b/src/pages/AddPersonalBankAccountPage.js @@ -5,7 +5,6 @@ import {withOnyx} from 'react-native-onyx'; import _ from 'underscore'; import AddPlaidBankAccount from '@components/AddPlaidBankAccount'; import ConfirmationPage from '@components/ConfirmationPage'; -import Form from '@components/Form'; import FormProvider from '@components/Form/FormProvider'; import HeaderWithBackButton from '@components/HeaderWithBackButton'; import ScreenWrapper from '@components/ScreenWrapper';