From 8825a208bb59b64ee1b055a8ff2a949b3f2974ce Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 21 Nov 2023 09:41:18 -0500 Subject: [PATCH] Removed temporary diagnostic output --- webcit-ng/static/js/upload.js | 1 - 1 file changed, 1 deletion(-) diff --git a/webcit-ng/static/js/upload.js b/webcit-ng/static/js/upload.js index 5ae027c8f..cc4c5fc2b 100644 --- a/webcit-ng/static/js/upload.js +++ b/webcit-ng/static/js/upload.js @@ -82,7 +82,6 @@ delete_upload = async(ref) => { ); if (response.ok) { // If the server accepted the delete, remove it from the screen - console.log("server deleted " + ref); var el = document.getElementById(ref); el.parentNode.removeChild(el); } -- 2.30.2