From 480ec3f0f0e0a065773eff16b3d958ab817dfc2f Mon Sep 17 00:00:00 2001 From: Sampo Tawast Date: Thu, 7 Mar 2024 13:04:48 +0200 Subject: [PATCH] fix: lint file --- .../src/components/applicationForm/formContent/FormContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/benefit/handler/src/components/applicationForm/formContent/FormContent.tsx b/frontend/benefit/handler/src/components/applicationForm/formContent/FormContent.tsx index d8fb2a7fbc..dacd4e5bae 100644 --- a/frontend/benefit/handler/src/components/applicationForm/formContent/FormContent.tsx +++ b/frontend/benefit/handler/src/components/applicationForm/formContent/FormContent.tsx @@ -1,5 +1,6 @@ import { APPLICATION_FIELD_KEYS } from 'benefit/handler/constants'; import { useAlertBeforeLeaving } from 'benefit/handler/hooks/useAlertBeforeLeaving'; +import { useApplicationFormContext } from 'benefit/handler/hooks/useApplicationFormContext'; import { useDependentFieldsEffect } from 'benefit/handler/hooks/useDependentFieldsEffect'; import { Application, @@ -44,7 +45,6 @@ import AttachmentsList from './attachmentsList/AttachmentsList'; import CompanySection from './companySection/CompanySection'; import { $DateHeader, $Description, $HelpText } from './FormContent.sc'; import { useFormContent } from './useFormContent'; -import { useApplicationFormContext } from 'benefit/handler/hooks/useApplicationFormContext'; type Props = { application: Application;