diff --git a/app/components/draft/AvailableParticipantsSection.tsx b/app/components/draft/AvailableParticipantsSection.tsx
index 064f607..c601882 100644
--- a/app/components/draft/AvailableParticipantsSection.tsx
+++ b/app/components/draft/AvailableParticipantsSection.tsx
@@ -1,5 +1,6 @@
import { Button } from "~/components/ui/button";
import { Badge } from "~/components/ui/badge";
+import { ListPlus, ListX } from "lucide-react";
interface AvailableParticipantsSectionProps {
participants: Array<{
@@ -180,21 +181,9 @@ export function AvailableParticipantsSection({
{hasTeam && (
- {/* Pick button - only show if it's your turn and participant not drafted */}
- {canPick && !isDrafted && (
+ {!isDrafted && (
<>
-
- {/* Queue icon button next to Pick */}
+ {/* Queue icon button */}
{!isInQueue ? (
) : (
)}
- >
- )}
-
- {/* Queue buttons - only show if not your turn */}
- {!canPick && !isDrafted && !isInQueue && (
-
- )}
- {!canPick && !isDrafted && isInQueue && (
-
+ >
)}
|