From ef0667b7cf9226bc113d37865f4a46b5a666455a Mon Sep 17 00:00:00 2001 From: Hugo Lextrait Date: Thu, 27 Apr 2023 11:43:32 +0200 Subject: [PATCH] resolve build issues --- .../Components/Layouts/Folder/FolderInformation/index.tsx | 6 ++---- .../Layouts/FolderArchived/FolderInformation/index.tsx | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/front/Components/Layouts/Folder/FolderInformation/index.tsx b/src/front/Components/Layouts/Folder/FolderInformation/index.tsx index e1ad4324..1a0af8c3 100644 --- a/src/front/Components/Layouts/Folder/FolderInformation/index.tsx +++ b/src/front/Components/Layouts/Folder/FolderInformation/index.tsx @@ -16,13 +16,11 @@ import classes from "./classes.module.scss"; import ClientSection from "./ClientSection"; import Folders from "@Front/Api/LeCoffreApi/SuperAdmin/Folders/Folders"; import { OfficeFolder } from "le-coffre-resources/dist/Customer"; -import { EFolderStatus } from "le-coffre-resources/dist/Customer/OfficeFolder"; -type IProps = { - router: NextRouter; -}; +type IProps = {}; type IPropsClass = IProps & { + router: NextRouter; selectedFolderUid: string; }; diff --git a/src/front/Components/Layouts/FolderArchived/FolderInformation/index.tsx b/src/front/Components/Layouts/FolderArchived/FolderInformation/index.tsx index 2f8812c7..db23e6e6 100644 --- a/src/front/Components/Layouts/FolderArchived/FolderInformation/index.tsx +++ b/src/front/Components/Layouts/FolderArchived/FolderInformation/index.tsx @@ -13,14 +13,12 @@ import classes from "./classes.module.scss"; import ClientSection from "./ClientSection"; import { OfficeFolder } from "le-coffre-resources/dist/Customer"; import Folders from "@Front/Api/LeCoffreApi/SuperAdmin/Folders/Folders"; -import { EFolderStatus } from "le-coffre-resources/dist/Customer/OfficeFolder"; import Module from "@Front/Config/Module"; -type IProps = { - router: NextRouter; -}; +type IProps = {}; type IPropsClass = IProps & { + router: NextRouter; selectedFolderUid: string; };