diff --git a/public/js/checkOpenHours.js b/public/js/checkOpenHours.js index 6df0f7d..f096160 100644 --- a/public/js/checkOpenHours.js +++ b/public/js/checkOpenHours.js @@ -196,10 +196,6 @@ const refreshDynamicOpenStatus = () => { } }) }); - - openHoursTableWrapper.forEach((tableWrapper) => { - console.log(tableWrapper.innerHTML); - }); // Generate a list from the openHours object with Monday as the first day const openHoursMondayFirst = []; diff --git a/public/js/checkZIPCode.js b/public/js/checkZIPCode.js index b8d299d..180e8c8 100644 --- a/public/js/checkZIPCode.js +++ b/public/js/checkZIPCode.js @@ -10,7 +10,6 @@ const normalizedCity = city.toLowerCase(); // Get the data for the current language and location const dataZIP = localizationData[language][normalizedCity]; -console.log("Localization Data for City:", dataZIP); // Debugging // Determine the correct list of ZIP codes based on the city const zipCodes = normalizedCity === "kiruna" ? zipCodesKiruna : zipCodesLulea;