From 7e850e5b5d8c070923d0ac43295064bb4d38c2ef Mon Sep 17 00:00:00 2001 From: bignutty <3515180-bignutty@users.noreply.gitlab.com> Date: Thu, 13 Feb 2025 22:59:58 +0100 Subject: [PATCH] remove debug logs --- labscore/cardstack/DynamicCardStack.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/labscore/cardstack/DynamicCardStack.js b/labscore/cardstack/DynamicCardStack.js index 03a03b0..5b1ebb1 100644 --- a/labscore/cardstack/DynamicCardStack.js +++ b/labscore/cardstack/DynamicCardStack.js @@ -58,8 +58,6 @@ class DynamicCardStack { this.loopPages = options.loop || true; this.expires = options.expires || 5*60*1000; - this.uniqueId = (Date.now()*Math.random()).toString(36); - this.stackCache = {}; this.pageState = []; this.currentSelectedSubcategory = null; @@ -76,7 +74,6 @@ class DynamicCardStack { * Kills the dynamic card stack. */ async kill(clearComponents){ - console.log("killing " + this.uniqueId) clearTimeout(this.timeout); this.listener.clear();