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 } }