diff --git a/dashboard/src/components/driver/DriverDRS.tsx b/dashboard/src/components/driver/DriverDRS.tsx index cbad4457..f50ea21a 100644 --- a/dashboard/src/components/driver/DriverDRS.tsx +++ b/dashboard/src/components/driver/DriverDRS.tsx @@ -9,11 +9,15 @@ type Props = { export default function DriverDRS({ on, possible, inPit, pitOut }: Props) { const pit = inPit || pitOut; + const label = pit ? "PIT" : "OVTK"; + const fullLabel = pit ? "PIT" : "OVERTAKE"; return ( - {pit ? "PIT" : "DRS"} + {label} ); }