This commit is contained in:
2025-12-04 00:29:32 +01:00
parent 9f88823315
commit 65555c18e8
4 changed files with 3 additions and 10 deletions
@@ -64,7 +64,6 @@ export interface UseDocumentsPanelPropsArgs {
folderOptions?: unknown[];
moveDocumentsToFolder?: (...args: unknown[]) => void;
selectionValue: WorkspaceSelectionValue;
currentTenantId?: Identifier | null;
}
export type DocumentsPanelProps = ReturnType<typeof useDocumentsPanelProps>;
@@ -118,7 +117,6 @@ const useDocumentsPanelProps = (props: UseDocumentsPanelPropsArgs) => {
folderOptions,
moveDocumentsToFolder,
selectionValue,
currentTenantId,
} = props;
return useMemo(
@@ -173,7 +171,6 @@ const useDocumentsPanelProps = (props: UseDocumentsPanelPropsArgs) => {
folderOptions,
onMoveDocumentsToFolder: moveDocumentsToFolder,
selectionValue,
currentTenantId,
}),
[
activeCorrespondentFilters,
@@ -223,7 +220,6 @@ const useDocumentsPanelProps = (props: UseDocumentsPanelPropsArgs) => {
getDocumentAsset,
folderOptions,
selectionValue,
currentTenantId,
],
);
};