From 6d89a9d342f08fa7b077080f2be00ac8e0956a55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20G=C3=B3mez?= Date: Sun, 21 Dec 2025 14:01:18 +0100 Subject: [PATCH] fix: description --- src/components/SpellbookDropdown.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/SpellbookDropdown.tsx b/src/components/SpellbookDropdown.tsx index 98613a2..e59394f 100644 --- a/src/components/SpellbookDropdown.tsx +++ b/src/components/SpellbookDropdown.tsx @@ -125,9 +125,11 @@ export function SpellbookDropdown() { .first(); // Open dialog with existing spellbook data + // Prefer local description if available, fall back to active spellbook setDialogSpellbook({ slug: activeSpellbook.slug, title: activeSpellbook.title, + description: local?.description || activeSpellbook.description, workspaceIds: Object.keys(state.workspaces), localId: local?.id, pubkey: activeSpellbook.pubkey,