From e4f3f9b2e010ce0e8c535cf529765f662d4eee59 Mon Sep 17 00:00:00 2001 From: Trent Larson Date: Mon, 15 May 2023 16:45:22 -0600 Subject: [PATCH] remove extra logging --- src/views/AccountViewView.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index b128074..9a9f87e 100644 --- a/src/views/AccountViewView.vue +++ b/src/views/AccountViewView.vue @@ -334,9 +334,6 @@ export default class AccountViewView extends Vue { return timeStr.substring(0, timeStr.indexOf("T")); } - mounted() { - console.log("Mounted", this); - } // 'created' hook runs when the Vue instance is first created async created() { // Uncomment to register this user on the test server. @@ -344,7 +341,6 @@ export default class AccountViewView extends Vue { // assign this to a class variable, eg. "registerThisUser = testServerRegisterUser", // select a component in the extension, and enter in the console: $vm.ctx.registerThisUser() //testServerRegisterUser(); - console.log("created", this); try { await db.open(); const settings = await db.settings.get(MASTER_SETTINGS_KEY);