From 4f56f3490057fb68419e23d740efd28296b2c634 Mon Sep 17 00:00:00 2001
From: Zara Mudassar <zara.1310@hotmail.com>
Date: Fri, 29 Apr 2022 15:18:31 +0200
Subject: [PATCH] Removed console.log

---
 src/components/BaseComponents/CommunityHeader.vue | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/components/BaseComponents/CommunityHeader.vue b/src/components/BaseComponents/CommunityHeader.vue
index 3f9db4d..16921d8 100644
--- a/src/components/BaseComponents/CommunityHeader.vue
+++ b/src/components/BaseComponents/CommunityHeader.vue
@@ -104,7 +104,6 @@ export default {
     },
     joinCommunity: async function(id){
       const response = await JoinOpenCommunity(id);
-      console.log("response: " + response);
       if(response === "Login to join any community"){
         this.dialogOpen = true;
       }
@@ -114,7 +113,6 @@ export default {
     },
     getIfUserInCommunity: async function(){
       this.member = await GetIfUserAlreadyInCommunity(this.$router.currentRoute.value.params.communityID);
-      console.log("in: " + this.member);
     }
   },
   beforeMount() {
-- 
GitLab