remove useless log

This commit is contained in:
isUnknown 2024-07-24 18:31:19 +02:00
parent bb3d4a4be0
commit fde6a9cc83

View file

@ -7,7 +7,6 @@ function getDatesInMonth(month) {
for (let day = 1; day <= daysInMonth; day++) {
const currentDay = dayjs(new Date(year, month, day));
console.log(currentDay.format("DD-MM-YYYY"));
dates[parseInt(currentDay.format("DD"))] = [];
}