diff --git a/src/components/FavoriteSpellsDropdown.tsx b/src/components/FavoriteSpellsDropdown.tsx index e8b05bd..4cd1eb1 100644 --- a/src/components/FavoriteSpellsDropdown.tsx +++ b/src/components/FavoriteSpellsDropdown.tsx @@ -1,4 +1,4 @@ -import { WandSparkles, Play, Star } from "lucide-react"; +import { WandSparkles, Star } from "lucide-react"; import { useAccount } from "@/hooks/useAccount"; import { useFavoriteSpells } from "@/hooks/useFavoriteSpells"; import { useNostrEvent } from "@/hooks/useNostrEvent"; @@ -62,14 +62,15 @@ function FavoriteSpellItem({ pointer }: { pointer: EventPointer }) { onClick={handleCast} className="cursor-pointer py-2 hover:bg-muted focus:bg-muted transition-colors" > -
- {decoded.name || "Unnamed Spell"} - - - {decoded.command} + {decoded.name || decoded.command} + {decoded.name && ( + + {decoded.command} + + )}
); diff --git a/src/components/layouts/AppShell.tsx b/src/components/layouts/AppShell.tsx index 3e747ac..ecb4c87 100644 --- a/src/components/layouts/AppShell.tsx +++ b/src/components/layouts/AppShell.tsx @@ -61,21 +61,21 @@ export function AppShell({ children, hideBottomBar = false }: AppShellProps) { />
-
- - -
- +
+
+
-
+ + +