diff --git a/src/front/Components/Layouts/FolderArchived/FolderInformation/index.tsx b/src/front/Components/Layouts/FolderArchived/FolderInformation/index.tsx
index 59fbcab7..28a8a6e2 100644
--- a/src/front/Components/Layouts/FolderArchived/FolderInformation/index.tsx
+++ b/src/front/Components/Layouts/FolderArchived/FolderInformation/index.tsx
@@ -24,6 +24,7 @@ type IPropsClass = IProps & {
router: NextRouter;
selectedFolderUid: string;
isLoading: boolean;
+ selectedFolder: OfficeFolder | null;
isAnchored: AnchorStatus;
};
@@ -236,5 +237,5 @@ export default function FolderInformation(props: IProps) {
getFolder();
}, [getFolder]);
- return ;
+ return ;
}