aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorK-J-Dod24 <kieran.dodson@complexus.uk>2023-05-10 11:47:31 +0100
committerK-J-Dod24 <kieran.dodson@complexus.uk>2023-05-10 11:47:31 +0100
commitf11a92bdbc68df4696ed698b618420f643e39d42 (patch)
tree778bbe2f45f18609cf11f390796307c7d5edf293
parent172646bb707d26780a97838b5d44a2be8eeafbb3 (diff)
downloadtrackermap-web-f11a92bdbc68df4696ed698b618420f643e39d42.tar.gz
trackermap-web-f11a92bdbc68df4696ed698b618420f643e39d42.tar.bz2
trackermap-web-f11a92bdbc68df4696ed698b618420f643e39d42.zip
removed duplicates
-rw-r--r--modern/src/common/components/PositionValue.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/modern/src/common/components/PositionValue.js b/modern/src/common/components/PositionValue.js
index 56114ed3..525a7047 100644
--- a/modern/src/common/components/PositionValue.js
+++ b/modern/src/common/components/PositionValue.js
@@ -57,10 +57,6 @@ const PositionValue = ({ position, property, attribute }) => {
return value != null ? formatDistance(value, distanceUnit, t) : '';
case 'hours':
return value != null ? formatNumericHours(value, t) : '';
- case 'coolantTemp':
- return formatCelsius(value);
- case 'engineTemp':
- return formatCelsius(value);
default:
if (typeof value === 'number') {
return formatNumber(value);