From 33e343c77c3b96021368178d4449d33f488ca7bc Mon Sep 17 00:00:00 2001 From: Brett Edwards Date: Wed, 7 Feb 2024 13:43:45 -0800 Subject: [PATCH] comment --- web/src/features/moreCast2/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/features/moreCast2/util.ts b/web/src/features/moreCast2/util.ts index 026c20a8d..be153b732 100644 --- a/web/src/features/moreCast2/util.ts +++ b/web/src/features/moreCast2/util.ts @@ -149,7 +149,7 @@ export const fillGrassCuring = (rows: MoreCast2Row[]): MoreCast2Row[] => { for (const row of rows) { const stationInfo = stationGrassMap.get(row.stationCode) - // fill the grass curing forecasted value, as long as it doesn't already have a value + // fill the grass curing forecast value, as long as it doesn't already have a value if (stationInfo && row.grassCuringForecast && isNaN(row.grassCuringForecast.value)) { row.grassCuringForecast.value = stationInfo.grassCuring }