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}