diff --git a/app/components/draft/QueueSection.tsx b/app/components/draft/QueueSection.tsx index a548575..6a1fec3 100644 --- a/app/components/draft/QueueSection.tsx +++ b/app/components/draft/QueueSection.tsx @@ -27,17 +27,8 @@ interface QueueSectionProps { availableParticipants: Array<{ id: string; name: string; + sport: { name: string }; }>; - eligibility: { - flexPicksUsed: number; - flexPicksAvailable: number; - picksBySport: Record; - sportAvailability: Record< - string, - { sportName: string; sportId: string } - >; - ineligibleReasons: Record; - } | null; seasonId: string; teamId: string; isMyTurn: boolean; @@ -55,11 +46,13 @@ function SortableQueueItem({ item, index, participantName, + sportName, onRemove, }: { item: { id: string; participantId: string }; index: number; participantName: string; + sportName?: string; onRemove: () => void; }) { const { @@ -104,6 +97,7 @@ function SortableQueueItem({ {index + 1}

{participantName}

+ {sportName &&

{sportName}

}