From a9c01fb66ef2e86dbc36efb7e2f2f8bce4683644 Mon Sep 17 00:00:00 2001 From: Chris Parsons Date: Sun, 19 Apr 2026 21:23:21 -0700 Subject: [PATCH] Fix draft board page. --- app/components/draft/DraftPickCell.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/app/components/draft/DraftPickCell.tsx b/app/components/draft/DraftPickCell.tsx index 89c3532..1f46b07 100644 --- a/app/components/draft/DraftPickCell.tsx +++ b/app/components/draft/DraftPickCell.tsx @@ -66,8 +66,8 @@ function DraftPickCell({ children, ...rest }, ref) { - const showCorona = state === "picked" || (state === "upcoming" && !!coronaState); const isCurrent = state === "current"; + const showCorona = !isCurrent; let currentLabel = "On The Clock"; if (seasonStatus === "pre_draft") { @@ -87,18 +87,23 @@ function DraftPickCell({ > {isCurrent ? (
- ) : showCorona && coronaState ? ( + ) : coronaState ? (
- ) : showCorona ? ( + ) : state === "picked" ? (
+ ) : state === "upcoming" ? ( +
) : null}