diff --git a/src/components/EmbeddedNaddr.tsx b/src/components/EmbeddedNaddr.tsx
index 49f339d6..ac391cb2 100644
--- a/src/components/EmbeddedNaddr.tsx
+++ b/src/components/EmbeddedNaddr.tsx
@@ -1,7 +1,7 @@
import { useMemo } from 'react';
import { Link, useNavigate } from 'react-router-dom';
import { nip19 } from 'nostr-tools';
-import { Users, PartyPopper } from 'lucide-react';
+import { Users } from 'lucide-react';
import { Avatar, AvatarImage, AvatarFallback } from '@/components/ui/avatar';
import { Skeleton } from '@/components/ui/skeleton';
import { useAddrEvent, type AddrCoords } from '@/hooks/useEvent';
@@ -190,7 +190,7 @@ function EmbeddedNaddrCard({ event, className }: { event: NostrEvent; className?
{isFollowPack && memberCount > 0 && (
- {isStarterPack ? : }
+
{isStarterPack ? 'Starter Pack' : 'Follow Set'}
diff --git a/src/components/FollowPackDetail.tsx b/src/components/FollowPackDetail.tsx
index 18ed74a8..f7ba2178 100644
--- a/src/components/FollowPackDetail.tsx
+++ b/src/components/FollowPackDetail.tsx
@@ -1,6 +1,6 @@
import { useMemo, useState, useCallback } from 'react';
import { Link, useNavigate } from 'react-router-dom';
-import { ArrowLeft, Users, UserPlus, Check, Loader2, Copy, PartyPopper } from 'lucide-react';
+import { ArrowLeft, Users, UserPlus, Check, Loader2, Copy } from 'lucide-react';
import { nip19 } from 'nostr-tools';
import { useSeoMeta } from '@unhead/react';
import type { NostrEvent, NostrMetadata } from '@nostrify/nostrify';
@@ -85,7 +85,7 @@ function FollowPackShell({ children }: { children: React.ReactNode }) {
@@ -238,7 +238,7 @@ function FollowPackContent({ event }: { event: NostrEvent }) {
- {isStarterPack ? : }
+
{isStarterPack ? 'Starter Pack' : 'Follow Set'}