diff --git a/src/components/nostr/kinds/BadgeAwardRenderer.tsx b/src/components/nostr/kinds/BadgeAwardRenderer.tsx index d2af4ef..dc48e56 100644 --- a/src/components/nostr/kinds/BadgeAwardRenderer.tsx +++ b/src/components/nostr/kinds/BadgeAwardRenderer.tsx @@ -13,6 +13,7 @@ import { getBadgeImageUrl, } from "@/lib/nip58-helpers"; import { Award } from "lucide-react"; +import { UserName } from "../UserName"; /** * Parse an address pointer from an a tag value @@ -92,13 +93,17 @@ export function BadgeAwardRenderer({ event }: BaseEventProps) { )} - {/* Awarded count - linked to this award event */} + {/* Awarded count/name - linked to this award event */} - awarded to {recipientCount}{" "} - {recipientCount === 1 ? "person" : "people"} + awarded to + {recipientCount === 1 ? ( + + ) : ( + {recipientCount} people + )}