From 6638f2f4ba70bb3d5ce1d4c4e410d1b06f5c33d9 Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Thu, 18 Dec 2025 09:30:19 +0000 Subject: [PATCH] cleanup console statements --- src/RoomNotifs.ts | 1 - src/stores/notifications/RoomNotificationState.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/RoomNotifs.ts b/src/RoomNotifs.ts index ba354b828a..5d39b4f54b 100644 --- a/src/RoomNotifs.ts +++ b/src/RoomNotifs.ts @@ -254,7 +254,6 @@ export function determineUnreadState( return { symbol: null, count: 0, level: NotificationLevel.None, invited: false }; } - console.log("determineUnreadState", getUnsentMessages(room, threadId)); if (getUnsentMessages(room, threadId).length > 0) { return { symbol: "!", count: 1, level: NotificationLevel.Unsent, invited: false }; } diff --git a/src/stores/notifications/RoomNotificationState.ts b/src/stores/notifications/RoomNotificationState.ts index 9418e2c8fa..44a62b1307 100644 --- a/src/stores/notifications/RoomNotificationState.ts +++ b/src/stores/notifications/RoomNotificationState.ts @@ -141,7 +141,6 @@ export class RoomNotificationState extends NotificationState implements IDestroy private updateNotificationState(): void { const snapshot = this.snapshot(); - console.log(RoomNotifs.determineUnreadState(this.room, undefined, this.includeThreads)); const { level, symbol, count, invited } = RoomNotifs.determineUnreadState( this.room, undefined,