From 73d323e113bf59ddb6a6d3212ec0f29d510eb41e Mon Sep 17 00:00:00 2001 From: MaximeBignolet Date: Thu, 12 Feb 2026 11:50:53 +0100 Subject: [PATCH] feat(ui): replace DRS badge label with compact OVTK indicator --- dashboard/src/components/driver/DriverDRS.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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} ); }