From 41d21bc0ff660be47e54d9a6d07830f5fd1fbf6a Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Tue, 1 Jun 2021 00:09:35 -0400 Subject: [PATCH] Remove unwanted logs --- components/collections/index.vue | 2 -- helpers/fb.js | 4 ---- 2 files changed, 6 deletions(-) diff --git a/components/collections/index.vue b/components/collections/index.vue index 44b2ab92..d0bbb3b0 100644 --- a/components/collections/index.vue +++ b/components/collections/index.vue @@ -514,7 +514,6 @@ export default { this.displayModalAddFolder(true) }, editFolder(payload) { - console.log(payload) const { collectionIndex, folder, folderIndex, folderPath } = payload this.$data.editingCollectionIndex = collectionIndex this.$data.editingFolder = folder @@ -524,7 +523,6 @@ export default { this.displayModalEditFolder(true) }, editRequest(payload) { - console.log(payload) const { collectionIndex, folderIndex, diff --git a/helpers/fb.js b/helpers/fb.js index 0c24b156..881a34cd 100644 --- a/helpers/fb.js +++ b/helpers/fb.js @@ -254,7 +254,6 @@ export class FirebaseInstance { // TODO: Wth is with collections[0] if (collections.length > 0) { - console.log(collections[0].collection) setRESTCollections(collections[0].collection) } @@ -363,7 +362,6 @@ export class FirebaseInstance { } async writeSettings(setting, value) { - console.log(setting) const st = { updatedOn: new Date(), author: this.currentUser.uid, @@ -502,8 +500,6 @@ export class FirebaseInstance { .set(cl) } catch (e) { console.error("error updating", cl, e) - console.log(collection) - throw e } }