chore(client): remove redundant log

This commit is contained in:
Elian Doran 2025-11-27 21:12:47 +02:00
parent 16f0ac97f4
commit b5959c55e1
No known key found for this signature in database

View File

@ -75,10 +75,7 @@ class ContextMenu {
if (this.isMobile) { if (this.isMobile) {
this.$cover.on("click", () => this.hide()); this.$cover.on("click", () => this.hide());
} else { } else {
$(document).on("click", (e) => { $(document).on("click", (e) => this.hide());
console.log("Hide due to clickus")
this.hide()
});
} }
} }