diff --git a/package.json b/package.json index 5b14250d6..3472e45d7 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,6 @@ "start-multi2": "cross-env NODE_APP_INSTANCE=2 electron .", "start-prod": "cross-env NODE_ENV=production NODE_APP_INSTANCE=devprod electron .", "start-prod-multi": "cross-env NODE_ENV=production NODE_APP_INSTANCE=devprod1 electron .", - "start-prod-multi1": "cross-env NODE_ENV=production NODE_APP_INSTANCE=devprod2 electron .", "start-swarm-test": "cross-env NODE_ENV=swarm-testing NODE_APP_INSTANCE=1 electron .", "start-swarm-test-2": "cross-env NODE_ENV=swarm-testing NODE_APP_INSTANCE=2 electron .", "grunt": "grunt", diff --git a/ts/components/session/LeftPaneContactSection.tsx b/ts/components/session/LeftPaneContactSection.tsx index 8e720488d..75f5423f1 100644 --- a/ts/components/session/LeftPaneContactSection.tsx +++ b/ts/components/session/LeftPaneContactSection.tsx @@ -325,7 +325,6 @@ export class LeftPaneContactSection extends React.Component { const friends = window.getFriendsFromContacts(this.props.friends); const length = Number(sentFriendsRequest.length) + Number(friends.length); - // Prevent where friends and send FR showing two entries const combined = [...sentFriendsRequest, ...friends]; const list = ( diff --git a/ts/state/selectors/conversations.ts b/ts/state/selectors/conversations.ts index 4878b5464..5b85ed009 100644 --- a/ts/state/selectors/conversations.ts +++ b/ts/state/selectors/conversations.ts @@ -189,17 +189,6 @@ export const _getLeftPaneLists = ( ConversationListItemPropsType > = filterToPrimary(allSentFriendsRequest); - console.log('[vince] allFriends:', allFriends); - console.log('[vince] friends:', friends); - - console.log('[vince] allReceivedFriendsRequest:', allReceivedFriendsRequest); - console.log('[vince] receivedFriendsRequest:', receivedFriendsRequest); - - console.log('[vince] allSentFriendsRequest:', allSentFriendsRequest); - console.log('[vince] sentFriendsRequest:', sentFriendsRequest); - - console.log('[vince] conversations:', conversations); - return { conversations, archivedConversations,