Fix background embedding

This commit is contained in:
Kwaroran
2024-11-27 04:44:25 +09:00
parent 597c8879fc
commit 07fd36a811

View File

@@ -5,7 +5,7 @@
import { moduleBackgroundEmbedding, ReloadGUIPointer, selIdState } from "src/ts/stores.svelte";
let backgroundHTML = $derived(DBState.db?.characters?.[selIdState.selId]?.backgroundHTML)
let currentChar:character|groupChat = $state()
let currentChar:character|groupChat = $derived(DBState.db?.characters?.[selIdState.selId])
</script>