From cc757158293db65cf3a61abbd3de387bad676a0b Mon Sep 17 00:00:00 2001 From: MCHost Date: Sun, 6 Jul 2025 22:09:11 -0400 Subject: [PATCH] remove dup notif --- public/js/app.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/public/js/app.js b/public/js/app.js index b9bf58a..37c6b65 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -2030,7 +2030,6 @@ function updateModListPagination() { async function updateMods() { try { const key = `action-update-mods`; - const notification = showNotification('Updating mods...', 'loading', key); const response = await wsRequest('/update-mods', 'POST'); if (response.error) { elements.updateModsOutput.textContent = `Error: ${response.error}`; @@ -2038,7 +2037,6 @@ function updateModListPagination() { } else { const output = response.output || 'No output from mod update.'; elements.updateModsOutput.textContent = output; - showNotification('Mods updated successfully', 'success', key); } elements.updateModsModal.classList.remove('hidden'); } catch (error) {