From 3abe32d568ec275d740d7656702a666879a16466 Mon Sep 17 00:00:00 2001 From: Matjaž Črnko Date: Fri, 16 Jun 2023 21:29:19 +0200 Subject: fix: Modern - remove driverUniqueId formatter for now --- modern/src/common/util/formatter.js | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'modern/src/common/util') diff --git a/modern/src/common/util/formatter.js b/modern/src/common/util/formatter.js index 792a4ef0..0f7d2cc8 100644 --- a/modern/src/common/util/formatter.js +++ b/modern/src/common/util/formatter.js @@ -1,4 +1,3 @@ -import { useSelector } from 'react-redux'; import moment from 'moment'; import { altitudeFromMeters, @@ -69,16 +68,6 @@ export const formatNumericHours = (value, t) => { return `${hours} ${t('sharedHourAbbreviation')} ${minutes} ${t('sharedMinuteAbbreviation')}`; }; -export const formatDriverUniqueId = (value) => { - const drivers = useSelector((state) => state.drivers.items); - let driverId = `${value}`; - const storedDriver = Object.values(drivers).find((d) => d.uniqueId === driverId); - if (storedDriver) { - driverId += ` (${storedDriver.name})`; - } - return driverId; -}; - export const formatCoordinate = (key, value, unit) => { let hemisphere; let degrees; -- cgit v1.2.3