Remove logging
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-24 15:14:17 -05:00
parent fe64a868d7
commit 0c5d7e3c1b
2 changed files with 0 additions and 7 deletions

View File

@@ -17,13 +17,11 @@ export default function Page() {
switch (event.key) {
case ' ':
event.preventDefault();
console.log('Simulating barcode read');
const barcode = generateRandomBarcode();
setItem(barcodeToProduct(barcode));
break;
case 'Escape':
event.preventDefault();
console.log('Clearing bin selection');
setBin(null);
break;
}