Skip to content

Commit

Permalink
feat: add meta data for size and last modified on files
Browse files Browse the repository at this point in the history
  • Loading branch information
varun2948 committed Jan 26, 2024
1 parent 50d4092 commit 733c5bb
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions frontend/src/components/projectDetail/downloadOsmData.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,6 @@ export const DownloadOsmData = ({ projectMappingTypes, project }) => {

return results;
}
console.log(filterMappingCategory, 'filterMappingCategory');
console.log(selectedCategoryFormat, 'selectedCategoryFormat');
const multipleUrl = filterMappingCategory.featuretype.map((type) => {
return `${EXPORT_TOOL_S3_URL}/${datasetConfig.dataset_folder}/${
datasetConfig.dataset_prefix
Expand All @@ -157,8 +155,6 @@ export const DownloadOsmData = ({ projectMappingTypes, project }) => {
...feature,
...results[index],
}));
console.log(mergedArray, 'mergedArray');
console.log(results); // Array of results from fetch requests
const mergedListData = downloadDataList.map((type) => {
if (type.title === selectedCategoryFormat.title) {
return {
Expand All @@ -168,7 +164,6 @@ export const DownloadOsmData = ({ projectMappingTypes, project }) => {
}
return type;
});
console.log(mergedListData, 'mergedListData');
setDownloadDataList(mergedListData);
setIsDownloadingState({
title: selectedCategoryFormat.title,
Expand Down

0 comments on commit 733c5bb

Please sign in to comment.