From b9d51cc64718a4a8ee72bbcc136ffc17a30780a7 Mon Sep 17 00:00:00 2001 From: cdOut <88325488+cdOut@users.noreply.github.com> Date: Mon, 23 Oct 2023 12:53:35 +0200 Subject: [PATCH] Add FormProvider in TaskDescriptionPage --- src/pages/tasks/TaskDescriptionPage.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/pages/tasks/TaskDescriptionPage.js b/src/pages/tasks/TaskDescriptionPage.js index be2cdad03fe69..b4925655d34d5 100644 --- a/src/pages/tasks/TaskDescriptionPage.js +++ b/src/pages/tasks/TaskDescriptionPage.js @@ -6,7 +6,6 @@ import {withOnyx} from 'react-native-onyx'; import ScreenWrapper from '../../components/ScreenWrapper'; import HeaderWithBackButton from '../../components/HeaderWithBackButton'; import withLocalize, {withLocalizePropTypes} from '../../components/withLocalize'; -import Form from '../../components/Form'; import ONYXKEYS from '../../ONYXKEYS'; import TextInput from '../../components/TextInput'; import reportPropTypes from '../reportPropTypes'; @@ -21,6 +20,8 @@ import Navigation from '../../libs/Navigation/Navigation'; import FullPageNotFoundView from '../../components/BlockingViews/FullPageNotFoundView'; import withCurrentUserPersonalDetails from '../../components/withCurrentUserPersonalDetails'; import withReportOrNotFound from '../home/report/withReportOrNotFound'; +import FormProvider from '../../components/Form/FormProvider'; +import InputWrapper from '../../components/Form/InputWrapper'; const propTypes = { /** Current user session */ @@ -88,7 +89,7 @@ function TaskDescriptionPage(props) { > -
- -
+
);