Track shards separately, upgrade deps

This commit is contained in:
Jon Staab
2025-10-13 13:35:02 -07:00
parent 0cc25913c0
commit 44555215cf
19 changed files with 1109 additions and 1616 deletions
+4 -1
View File
@@ -1,8 +1,11 @@
<script lang="ts">
import {page} from "$app/stores"
import type {MakeNonOptional} from '@welshman/lib'
import Chat from "@app/components/Chat.svelte"
import {notifications, setChecked} from "@app/util/notifications"
const {chat} = $page.params as MakeNonOptional<typeof $page.params>
// We have to watch this one, since on mobile the badge will be visible when active
$effect(() => {
if ($notifications.has($page.url.pathname)) {
@@ -11,4 +14,4 @@
})
</script>
<Chat id={$page.params.chat} />
<Chat id={chat} />