1
0

chore: Remove console log
Remote Deploy / deploy (push) Successful in 2m15s

This commit is contained in:
2026-06-19 10:03:05 +02:00
parent c5884f8d55
commit 7d5e5dc4cf
-1
View File
@@ -274,7 +274,6 @@ function buildLessonArray(row: Row, ignoreAddress: string, themeColors: ThemeCol
const colIndex = letterToNumber(cell.address.replace(/[0-9]/g, "")); const colIndex = letterToNumber(cell.address.replace(/[0-9]/g, ""));
lessons[colIndex] = parseLessonCell(cell, themeColors, ignoreColors); lessons[colIndex] = parseLessonCell(cell, themeColors, ignoreColors);
console.log(lessons[colIndex])
}); });
const normalized = Array.from(lessons, (x) => (x === undefined ? null : x)); const normalized = Array.from(lessons, (x) => (x === undefined ? null : x));