diff --git a/src/routes/scene/components/pet-menu/pet-menu.svelte b/src/routes/scene/components/pet-menu/pet-menu.svelte index 13ef08d..201d996 100644 --- a/src/routes/scene/components/pet-menu/pet-menu.svelte +++ b/src/routes/scene/components/pet-menu/pet-menu.svelte @@ -23,6 +23,7 @@ let { user, ariaLabel = "Toggle pet actions" }: Props = $props(); const actions = $derived(user ? createPetActions(user) : []); + const dollName = $derived(user?.activeDoll?.name ?? ""); let rootEl = $state(null); let isOpen = $state(false); @@ -121,6 +122,18 @@ {/each} + {#if dollName} +
+ {dollName} +
+ {/if} +