From 15a20b972bfb04830533a3c2bea035b8811d55b2 Mon Sep 17 00:00:00 2001 From: zv0n Date: Sun, 27 Aug 2023 18:54:43 +0200 Subject: [PATCH] Remove console.log --- src/App.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/App.vue b/src/App.vue index fa3421e..997042e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -33,18 +33,15 @@ const days = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', const baseUrl = 'https://lunch.zvon.tech/api'; const swapRestaurants = (id: number, direction: Direction) => { - console.log("DOING"); const oldIndex = store.state.restaurantOrder.get(id); if (oldIndex === undefined || oldIndex === null) { return; } - console.log("DOING2"); const newIndex = oldIndex + (direction == Direction.LEFT ? -1 : 1); if(newIndex < 0 || newIndex >= menus.value.length) { return; } - console.log("DOING3"); let swapId = -1; for (let [key, value] of store.state.restaurantOrder.entries()) {