fix: Party.svelte editKey type (string | null -> string | undefined)

Co-Authored-By: Justin Edmund <justin@jedmund.com>
This commit is contained in:
Devin AI 2025-11-28 21:15:37 +00:00
parent f07e27abe8
commit 3b89628e7e

View file

@ -209,7 +209,7 @@
// Client-side editability state
let localId = $state<string>('')
let editKey = $state<string | null>(null)
let editKey = $state<string | undefined>(undefined)
// Derived editability (combines server and client state)
let canEdit = $derived(() => {