chore: remove remaining console logs

This commit is contained in:
afn 2023-03-18 20:59:59 -04:00
parent 019c9234c4
commit a006605b19

View File

@ -33,14 +33,12 @@
// the Updater // the Updater
selected = selected; selected = selected;
} }
console.log(selected);
} }
function nextVariant() { function nextVariant() {
if (i >= variants.length - 1) { if (i >= variants.length - 1) {
return; return;
} }
console.log('next');
i++; i++;
} }
@ -48,7 +46,6 @@
if (i == 0) { if (i == 0) {
return; return;
} }
console.log('previous');
i--; i--;
} }