remove of garbage

This commit is contained in:
Miroslav Kapa 2023-10-12 00:38:05 +02:00
parent d4e07d2028
commit 6e246410d5
2 changed files with 0 additions and 2 deletions

View File

@ -84,7 +84,6 @@ const Collection = ({ collection, searchText }) => {
};
const handleExportClick = () => {
//EXPORT KOLEKCIE
const collectionCopy = cloneDeep(collection);
exportCollection(transformCollectionToSaveToExportAsFile(collectionCopy));
};

View File

@ -209,7 +209,6 @@ export const exportCollection = (collection) => {
const fileBlob = new Blob([JSON.stringify(collection, null, 2)], { type: 'application/json' });
FileSaver.saveAs(fileBlob, fileName);
// console.log(collectionToExport);
};
export default exportCollection;