From dfab4095844b656cefcc19bdb707403d8af1fabc Mon Sep 17 00:00:00 2001 From: "shakespeare.diy" Date: Tue, 17 Feb 2026 19:19:41 -0600 Subject: [PATCH] style: remove PartyPopper icon from follow pack components, use Users icon consistently Co-authored-by: shakespeare.diy --- src/components/EmbeddedNaddr.tsx | 4 ++-- src/components/FollowPackDetail.tsx | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) 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 }) {
- +

Follow Pack

@@ -238,7 +238,7 @@ function FollowPackContent({ event }: { event: NostrEvent }) { - {isStarterPack ? : } + {isStarterPack ? 'Starter Pack' : 'Follow Set'}