From b9cc34afa1725dabdbf35e5b621fe7dfa3fdc83c Mon Sep 17 00:00:00 2001 From: csawatzky Date: Mon, 29 Sep 2025 11:08:51 -0600 Subject: [PATCH] fixed the high toggle showing the humidity and not the emc value --- src/bin/BinVisualizerV2.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/BinVisualizerV2.tsx b/src/bin/BinVisualizerV2.tsx index 7bfc8a1..8cd41e0 100644 --- a/src/bin/BinVisualizerV2.tsx +++ b/src/bin/BinVisualizerV2.tsx @@ -436,7 +436,7 @@ export default function BinVisualizer(props: Props) { highNodeConditions = { tempC: filteredNodes.temps[highTempIndex], humidity: filteredNodes.humids[highTempIndex], - emc: filteredNodes.humids[highTempIndex], + emc: filteredNodes.moistures[highTempIndex], tempCTrend: cableTrendData.hotNodeTrend?.tempTrend ?? 0, humidityTrend: cableTrendData.hotNodeTrend?.humidityTrend ?? 0, emcTrend: cableTrendData.hotNodeTrend?.emcTrend ?? 0