From 7e35fca0f91010d75672714d7b60568f03405f21 Mon Sep 17 00:00:00 2001 From: Frutescens Date: Fri, 2 Aug 2024 11:17:22 -0700 Subject: [PATCH] Removed console.log --- src/ui/run-history-ui-handler.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ui/run-history-ui-handler.ts b/src/ui/run-history-ui-handler.ts index 160f938d20f..745e3e14194 100644 --- a/src/ui/run-history-ui-handler.ts +++ b/src/ui/run-history-ui-handler.ts @@ -137,7 +137,6 @@ export default class RunHistoryUiHandler extends MessageUiHandler { if (timestamps.length > 1) { timestampsNo.sort((a, b) => a - b); } - console.log(timestamps); const entryCount = timestamps.length; for (let s = 0; s < entryCount; s++) { const entry = new RunEntry(this.scene, response, timestampsNo[s].toString(), s);