From 2ee17846b82461805db14a8d3bc4a67ca22ce14c Mon Sep 17 00:00:00 2001 From: itsaygea Date: Sat, 24 Jan 2026 09:18:30 -0700 Subject: [PATCH] Clean up debug logs and bump cache version --- index.html | 4 ++-- js/main.js | 7 ------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 58683bd..781495a 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,7 @@ - + @@ -603,6 +603,6 @@ - + diff --git a/js/main.js b/js/main.js index b2cd167..9de03f4 100644 --- a/js/main.js +++ b/js/main.js @@ -619,8 +619,6 @@ const sorted = Object.entries(scores).sort((a, b) => b[1] - a[1]).slice(0, 3); - console.log('updateSuggestions called, sorted:', sorted); - if (sorted.length === 0) { list.innerHTML = '

No synergy data available for selected operators. Try adding a main DPS like Laevatain or Yvonne.

'; } else { @@ -646,16 +644,11 @@ `; }).join(''); - console.log('Suggestions HTML set, list.children:', list.children.length); - // Add click listeners to suggestion items using event delegation list.onclick = function(e) { - console.log('list clicked, target:', e.target); const item = e.target.closest('.suggestion-item'); - console.log('closest item:', item); if (item) { const operatorId = item.dataset.operatorId; - console.log('Clicked suggestion:', operatorId); if (!selectedTeam.includes(operatorId) && selectedTeam.length < 4) { selectedTeam.push(operatorId); updateTeamUI();