Hide EV column from draft board available participants table

https://claude.ai/code/session_016oJK1gmWZ48YWEZmVqm6f9
This commit is contained in:
Claude 2026-02-20 00:26:22 +00:00
parent 2d6dd6ec9f
commit d40a0a0413
No known key found for this signature in database

View file

@ -117,7 +117,6 @@ export function AvailableParticipantsSection({
<tr>
<th className="text-left p-3 font-semibold">Participant</th>
<th className="text-left p-3 font-semibold">Sport</th>
<th className="text-right p-3 font-semibold">EV</th>
{hasTeam && (
<th className="text-right p-3 font-semibold">Queue</th>
)}
@ -127,7 +126,7 @@ export function AvailableParticipantsSection({
{participants.length === 0 ? (
<tr>
<td
colSpan={hasTeam ? 4 : 3}
colSpan={hasTeam ? 3 : 2}
className="text-center py-8 text-muted-foreground"
>
No participants found
@ -192,9 +191,6 @@ export function AvailableParticipantsSection({
<td className="p-3 text-muted-foreground">
{participant.sport.name}
</td>
<td className="p-3 text-right font-mono font-semibold">
{participant.expectedValue ? participant.expectedValue.toFixed(1) : "—"}
</td>
{hasTeam && (
<td className="p-3 text-right">
<div className="flex gap-2 justify-end items-center">