Merge pull request #5 from TauNeutrino/remove-console-logs-2603846512127419944

🧹 [code health] remove leftover console.log statements
This commit is contained in:
Michael
2026-03-10 13:40:13 +01:00
committed by GitHub
3 changed files with 1 additions and 33 deletions

View File

@@ -454,12 +454,9 @@ export async function checkForUpdates() {
}));
const latest = versions[0].tag;
console.log(`[Kantine] Version Check: Local [${currentVersion}] vs Latest [${latest}] (${devMode ? 'dev' : 'stable'})`);
if (!isNewer(latest, currentVersion)) return;
console.log(`[Kantine] Update verfügbar: ${latest}`);
const headerTitle = document.querySelector('.header-left h1');
if (headerTitle && !headerTitle.querySelector('.update-icon')) {
const icon = document.createElement('a');