From d4196d1647c5aca1268db6a85db4b3fb67667b85 Mon Sep 17 00:00:00 2001 From: Mario Perrotta Date: Wed, 24 Jan 2024 11:16:56 +0100 Subject: [PATCH] chore: update --- ts/features/fci/components/ErrorComponent.tsx | 21 ++++++++----------- 1 file changed, 9 insertions(+), 12 deletions(-) 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()} + ); };