diff --git a/app/components/DraftSidebar.tsx b/app/components/DraftSidebar.tsx index 278bf4b..ead39bd 100644 --- a/app/components/DraftSidebar.tsx +++ b/app/components/DraftSidebar.tsx @@ -13,7 +13,7 @@ interface DraftSidebarProps { collapsed: boolean; onCollapsedChange: (collapsed: boolean) => void; queueSection: ReactNode; - participantsSection: ReactNode; + recentPicksSection: ReactNode; className?: string; } @@ -21,27 +21,31 @@ export function DraftSidebar({ collapsed, onCollapsedChange, queueSection, - participantsSection, + recentPicksSection, className, }: DraftSidebarProps) { if (collapsed) { return (