From de279364ce8b6a78a67ba844736b368f9ee3448d Mon Sep 17 00:00:00 2001 From: Eric Wagoner Date: Thu, 17 Sep 2026 00:25:07 -0400 Subject: [PATCH] The table-talk count is reactive, so your own words never show as unread Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01Jm2auWk6RP71CjaAb4FMoG --- packages/web/src/net.svelte.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web/src/net.svelte.ts b/packages/web/src/net.svelte.ts index 780e2f7..4118bc9 100644 --- a/packages/web/src/net.svelte.ts +++ b/packages/web/src/net.svelte.ts @@ -380,7 +380,7 @@ class Net { stats = $state | null>(null); chatSeen = $state>(loadChatSeen()); /** Messages in the current room this session (history + live). */ - chatCount = 0; + chatCount = $state(0); games = $state([]); notificationsEnabled = $state( typeof Notification !== "undefined" && Notification.permission === "granted",