From ebe2d466c88c4edfcb4b0967efa91c567b933777 Mon Sep 17 00:00:00 2001 From: FloatingGhost Date: Sat, 4 Feb 2023 20:30:29 +0000 Subject: [PATCH] remove debug logs --- src/components/follow_request_card/follow_request_card.js | 1 - src/components/nav_panel/nav_panel.js | 1 - 2 files changed, 2 deletions(-) diff --git a/src/components/follow_request_card/follow_request_card.js b/src/components/follow_request_card/follow_request_card.js index 86a0edba..47c86e15 100644 --- a/src/components/follow_request_card/follow_request_card.js +++ b/src/components/follow_request_card/follow_request_card.js @@ -84,7 +84,6 @@ const FollowRequestCard = { return this.mergedConfig.modalOnDenyFollow }, show () { - console.log("SHOW", this.$store.state.api.followRequests); const notifId = this.$store.state.api.followRequests.find(req => req.id === this.user.id) return notifId !== undefined diff --git a/src/components/nav_panel/nav_panel.js b/src/components/nav_panel/nav_panel.js index 0faec5e3..2eda912e 100644 --- a/src/components/nav_panel/nav_panel.js +++ b/src/components/nav_panel/nav_panel.js @@ -54,7 +54,6 @@ const NavPanel = { }), ...mapGetters(['unreadAnnouncementCount']), followRequestCount () { - console.log({...this.$store.state.users.currentUser}); return this.$store.state.users.currentUser.follow_requests_count } }