forked from extern/bruno
remove of garbage
This commit is contained in:
parent
d4e07d2028
commit
6e246410d5
@ -84,7 +84,6 @@ const Collection = ({ collection, searchText }) => {
|
||||
};
|
||||
|
||||
const handleExportClick = () => {
|
||||
//EXPORT KOLEKCIE
|
||||
const collectionCopy = cloneDeep(collection);
|
||||
exportCollection(transformCollectionToSaveToExportAsFile(collectionCopy));
|
||||
};
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user