From b3321ff030e9ad29c1b3ff8906c6ed2003450720 Mon Sep 17 00:00:00 2001 From: glax Date: Fri, 9 Jun 2023 23:48:39 +0200 Subject: [PATCH] unnecessary log --- Website/interaction.js | 1 - 1 file changed, 1 deletion(-) diff --git a/Website/interaction.js b/Website/interaction.js index 1e40f3e..3d99587 100644 --- a/Website/interaction.js +++ b/Website/interaction.js @@ -363,7 +363,6 @@ function ShowTasksQueue(){ var outputDom = downloadTasksPopup.querySelector("popup-content"); outputDom.replaceChildren(); GetRunningTasks().then((taskJson) => { - console.log(taskJson); taskJson.forEach(task => { outputDom.appendChild(CreateProgressChild(task)); });