remove debug logs

This commit is contained in:
bignutty 2025-02-13 22:59:58 +01:00
parent 783e11fa9d
commit 7e850e5b5d

View file

@ -58,8 +58,6 @@ class DynamicCardStack {
this.loopPages = options.loop || true; this.loopPages = options.loop || true;
this.expires = options.expires || 5*60*1000; this.expires = options.expires || 5*60*1000;
this.uniqueId = (Date.now()*Math.random()).toString(36);
this.stackCache = {}; this.stackCache = {};
this.pageState = []; this.pageState = [];
this.currentSelectedSubcategory = null; this.currentSelectedSubcategory = null;
@ -76,7 +74,6 @@ class DynamicCardStack {
* Kills the dynamic card stack. * Kills the dynamic card stack.
*/ */
async kill(clearComponents){ async kill(clearComponents){
console.log("killing " + this.uniqueId)
clearTimeout(this.timeout); clearTimeout(this.timeout);
this.listener.clear(); this.listener.clear();