From 1ca95f8768a2eae7d6dc0fd55900386d86160732 Mon Sep 17 00:00:00 2001 From: Jan Bader Date: Wed, 2 Mar 2022 20:06:33 +0000 Subject: [PATCH] Remove old logging calls --- web/src/pages/BudgetSidebar.vue | 1 - web/src/pages/Budgeting.vue | 1 - web/src/stores/transactions.ts | 1 - 3 files changed, 3 deletions(-) diff --git a/web/src/pages/BudgetSidebar.vue b/web/src/pages/BudgetSidebar.vue index db6fd09..69698a5 100644 --- a/web/src/pages/BudgetSidebar.vue +++ b/web/src/pages/BudgetSidebar.vue @@ -20,7 +20,6 @@ const OffBudgetAccountsBalance = computed(() => accountStore.OffBudgetAccountsBa function isRecentlyReconciled(account : Account) { const now = new Date().getTime(); const recently = 7 * 24 * 60 * 60 * 1000; - console.log(account.Name, account.LastReconciled, now, recently, new Date(now-recently)); return new Date(now - recently).getTime() < account.LastReconciled.getTime(); } diff --git a/web/src/pages/Budgeting.vue b/web/src/pages/Budgeting.vue index 0203b8a..ef235fe 100644 --- a/web/src/pages/Budgeting.vue +++ b/web/src/pages/Budgeting.vue @@ -57,7 +57,6 @@ onMounted(() => { const expandedGroups = ref>(new Map()) function toggleGroup(group: { Name: string, Expand: boolean }) { - console.log(expandedGroups.value); expandedGroups.value.set(group.Name, !(expandedGroups.value.get(group.Name) ?? group.Expand)) } diff --git a/web/src/stores/transactions.ts b/web/src/stores/transactions.ts index b1935c0..121cebb 100644 --- a/web/src/stores/transactions.ts +++ b/web/src/stores/transactions.ts @@ -84,7 +84,6 @@ export const useTransactionsStore = defineStore("budget/transactions", { this.AddTransactions([recTrans]); account.Transactions.unshift(recTrans.ID); } - console.log("Reconcile: " + response.message); }, logout() { this.$reset()