remove log line

This commit is contained in:
2025-12-28 12:42:43 -08:00
parent 42dbf5e31d
commit 202c7014a1

View File

@ -13,7 +13,6 @@ const navItems = [
const populateNav = function() { const populateNav = function() {
let nav = document.getElementById("top-nav"); let nav = document.getElementById("top-nav");
let path = window.location.pathname; let path = window.location.pathname;
console.log(path);
for (const item of navItems) { for (const item of navItems) {
let a = document.createElement("a"); let a = document.createElement("a");