fix: remove console.log

This commit is contained in:
Devin Haska 2024-02-09 15:09:27 -08:00
parent 5f6740c573
commit 26f802ef28

View file

@ -39,8 +39,6 @@ const organizeByDate = (collection) => {
collectionByDate[year][month].push(item);
});
console.log(collectionByDate);
return collectionByDate;
};