From 5de019e48585120eec3d142e78090567537c196d Mon Sep 17 00:00:00 2001 From: PhilReact Date: Thu, 12 Oct 2023 22:55:35 -0500 Subject: [PATCH] remove logs --- core/src/components/friends-view/core-sync-status.js | 1 - core/src/components/friends-view/feed-item.js | 1 - core/src/components/friends-view/friends-feed.js | 2 -- plugins/plugins/core/components/ChatGroupsManagement.js | 1 - plugins/plugins/core/messaging/q-chat/q-chat.src.js | 1 - 5 files changed, 6 deletions(-) diff --git a/core/src/components/friends-view/core-sync-status.js b/core/src/components/friends-view/core-sync-status.js index fb36af88..89e7aa9e 100644 --- a/core/src/components/friends-view/core-sync-status.js +++ b/core/src/components/friends-view/core-sync-status.js @@ -52,7 +52,6 @@ height:undefined, `; stateChanged(state) { - console.log({state}) this.nodeStatus = state.app.nodeStatus } diff --git a/core/src/components/friends-view/feed-item.js b/core/src/components/friends-view/feed-item.js index ebc01d23..3e590d4d 100644 --- a/core/src/components/friends-view/feed-item.js +++ b/core/src/components/friends-view/feed-item.js @@ -266,7 +266,6 @@ getMyNode(){ }) if(response && response.data && response.data.status === 'READY'){ const rawData = await this.getRawData() - console.log({rawData}) const object = { ...this.resource.schema.display } diff --git a/core/src/components/friends-view/friends-feed.js b/core/src/components/friends-view/friends-feed.js index 268552ee..a56463dc 100644 --- a/core/src/components/friends-view/friends-feed.js +++ b/core/src/components/friends-view/friends-feed.js @@ -110,14 +110,12 @@ class FriendsFeed extends connect(store)(LitElement) { } const schemas = await this.getSchemas() const friendList = JSON.parse(localStorage.getItem('friends-my-friend-list') || "[]") - console.log({friendList}) const names = friendList.map(friend => `name=${friend.name}`).join('&'); if(names.length === 0){ this.endpoints= [] this.endpointOffsets = Array(this.endpoints.length).fill(0); return } - console.log({names}) const baseurl = `${this.nodeUrl}/arbitrary/resources/search?reverse=true&exactmatchnames=true&${names}` let formEndpoints = [] schemas.forEach((schema)=> { diff --git a/plugins/plugins/core/components/ChatGroupsManagement.js b/plugins/plugins/core/components/ChatGroupsManagement.js index a2553052..b53e293f 100644 --- a/plugins/plugins/core/components/ChatGroupsManagement.js +++ b/plugins/plugins/core/components/ChatGroupsManagement.js @@ -218,7 +218,6 @@ class ChatGroupsManagement extends LitElement { } nameRenderer(person){ - console.log({person}) return html` diff --git a/plugins/plugins/core/messaging/q-chat/q-chat.src.js b/plugins/plugins/core/messaging/q-chat/q-chat.src.js index 8c2de597..c25fcc2f 100644 --- a/plugins/plugins/core/messaging/q-chat/q-chat.src.js +++ b/plugins/plugins/core/messaging/q-chat/q-chat.src.js @@ -522,7 +522,6 @@ class Chat extends LitElement { if(sideEffectAction && sideEffectAction.type === 'openPrivateChat'){ const name = sideEffectAction.data.name const address = sideEffectAction.data.address - console.log({address}, this.chatHeadsObj) if(this.chatHeadsObj.direct && this.chatHeadsObj.direct.find(item=> item.address === address)){ this.setActiveChatHeadUrl(`direct/${address}`) window.parent.reduxStore.dispatch(