diff --git a/ts/features/fci/components/ErrorComponent.tsx b/ts/features/fci/components/ErrorComponent.tsx index b4ce3a05db7..61720baa0d3 100644 --- a/ts/features/fci/components/ErrorComponent.tsx +++ b/ts/features/fci/components/ErrorComponent.tsx @@ -11,7 +11,6 @@ import { VSpacer } from "@pagopa/io-app-design-system"; import I18n from "../../../i18n"; -import BaseScreenComponent from "../../../components/screens/BaseScreenComponent"; import { WithTestID } from "../../../types/WithTestID"; import { addTicketCustomField, @@ -136,17 +135,15 @@ const ErrorComponent = (props: Props) => { }; return ( - - - } - title={props.title} - body={props.subTitle} - email={props.email} - /> - {footerButtons()} - - + + } + title={props.title} + body={props.subTitle} + email={props.email} + /> + {footerButtons()} + ); };