From f3e9953b48ff1941268bd4c3f8a425f056f1a5ee Mon Sep 17 00:00:00 2001 From: Jack Kingsman Date: Thu, 14 May 2026 08:58:18 -0700 Subject: [PATCH] Fix linting --- frontend/src/components/repeater/repeaterPaneShared.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/components/repeater/repeaterPaneShared.tsx b/frontend/src/components/repeater/repeaterPaneShared.tsx index b7a8591..5dc31c3 100644 --- a/frontend/src/components/repeater/repeaterPaneShared.tsx +++ b/frontend/src/components/repeater/repeaterPaneShared.tsx @@ -236,8 +236,7 @@ export function lppDisplayUnit( return { unit: '°F', value: (value * 9) / 5 + 32 }; } if (typeName === 'current') { - if (value <= 1) - return { unit: 'mA', value: value * 1000 }; + if (value <= 1) return { unit: 'mA', value: value * 1000 }; } return { unit: LPP_UNIT_MAP[typeName] ?? '', value }; }