Skip to content

Commit

Permalink
removed unnecessary console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ivar117 committed Oct 2, 2024
1 parent 7f523e6 commit 1f6d48d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions public/js/checkOpenHours.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
Expand Down
1 change: 0 additions & 1 deletion public/js/checkZIPCode.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1f6d48d

Please sign in to comment.