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
selected = selected;
}
console.log(selected);
}
function nextVariant() {
if (i >= variants.length - 1) {
return;
}
console.log('next');
i++;
}
@ -48,7 +46,6 @@
if (i == 0) {
return;
}
console.log('previous');
i--;
}