fix: Party.svelte editKey type (string | null -> string | undefined)
Co-Authored-By: Justin Edmund <justin@jedmund.com>
This commit is contained in:
parent
f07e27abe8
commit
3b89628e7e
1 changed files with 1 additions and 1 deletions
|
|
@ -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(() => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue