From 65e3f81f36e69d4fd525b392a6da46aba79d9b0c Mon Sep 17 00:00:00 2001 From: Matthew Remmel Date: Fri, 26 Sep 2025 11:14:35 -0400 Subject: [PATCH] Remove comments and test lines --- src/app/util/notifications.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app/util/notifications.ts b/src/app/util/notifications.ts index ce7c5543..e437b8c5 100644 --- a/src/app/util/notifications.ts +++ b/src/app/util/notifications.ts @@ -65,7 +65,6 @@ export const notifications = derived( return true } - // can update to tuple of (path, event_type) if later filtering is desired const paths = new Set() for (const {pubkeys, messages} of $chats) { @@ -156,14 +155,11 @@ export const notifications = derived( } } - paths.add("pls") - return paths }, ) export const badgeCount = derived(notifications, notifications => { - // do filtering as desired? return notifications.size })