From 041959dc98df33217230ec7a6704a8a7aa70f117 Mon Sep 17 00:00:00 2001 From: Puyodead1 Date: Fri, 10 Nov 2023 10:53:46 -0500 Subject: [PATCH] remove debug log --- src/components/MemberList/MemberList.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/MemberList/MemberList.tsx b/src/components/MemberList/MemberList.tsx index 8ce0cfc..3f48e12 100644 --- a/src/components/MemberList/MemberList.tsx +++ b/src/components/MemberList/MemberList.tsx @@ -44,7 +44,6 @@ function MemberList() { if (app.activeGuild && app.activeChannel) { const { memberLists } = app.activeGuild; const listId = app.activeChannel.listId; - console.debug(`List ID for channel ${app.activeChannel.id} is ${listId}`); const store = memberLists.get(listId); setList(store ? store.list : null); } else {