Skip to content

Commit

Permalink
chore: remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
agazso committed Sep 21, 2023
1 parent d01a95d commit 199465d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/routes/invite/[address]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@
// make a copy of the list of chatIds when the screen is opened so that later we can compare
const oldChatIds = new Set($chats.chats.keys())
unsubscribe = chats.subscribe((store) => {
console.debug({ store, oldChats: oldChatIds })
store.chats.forEach((value, key) => {
if (!oldChatIds.has(key) && !isGroupChatId(value.chatId)) {
// found new private chat
Expand Down

0 comments on commit 199465d

Please sign in to comment.