rename util

This commit is contained in:
Abhinav 2023-05-02 20:55:30 +05:30
parent b9ed183aa8
commit 8a5fd1a5af
2 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@ import {
getUniqueFileExportName,
getFileMetadataExportPath,
getFileExportPath,
getRenamedCollections,
getRenamedExportedCollections,
getDeletedExportedFiles,
convertCollectionIDExportNameObjectToMap,
convertFileIDExportNameObjectToMap,
@ -188,7 +188,7 @@ class ExportService {
userPersonalFiles,
exportRecord
);
const renamedCollections = getRenamedCollections(
const renamedCollections = getRenamedExportedCollections(
userNonEmptyPersonalCollections,
exportRecord
);
@ -293,7 +293,7 @@ class ExportService {
nonEmptyPersonalCollections
);
const renamedCollections = getRenamedCollections(
const renamedCollections = getRenamedExportedCollections(
nonEmptyPersonalCollections,
exportRecord
);

View file

@ -40,7 +40,7 @@ export const convertFileIDExportNameObjectToMap = (
);
};
export const getRenamedCollections = (
export const getRenamedExportedCollections = (
collections: Collection[],
exportRecord: ExportRecord
) => {