Remove stray console logs

This commit is contained in:
Oliver-Akins 2024-04-04 20:02:19 -06:00
parent 9f6a8e5e73
commit 566faf61d2

View file

@ -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();
};