From 566faf61d2b1b1220412e593a3d058eeafceb1ca Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Thu, 4 Apr 2024 20:02:19 -0600 Subject: [PATCH] Remove stray console logs --- module/components/incrementer.mjs | 2 -- 1 file changed, 2 deletions(-) diff --git a/module/components/incrementer.mjs b/module/components/incrementer.mjs index ea658de..d02aa68 100644 --- a/module/components/incrementer.mjs +++ b/module/components/incrementer.mjs @@ -85,13 +85,11 @@ export class DotDungeonIncrementer extends HTMLElement { }; #increment() { - console.log(`increment event`); this.#input.value++; this.#updateValue(); }; #decrement() { - console.log(`decrement event`); this.#input.value--; this.#updateValue(); };