From d83167776908bb89eba6bd85c0f203d93de5506a Mon Sep 17 00:00:00 2001 From: csawatzky Date: Wed, 12 Nov 2025 16:30:49 -0600 Subject: [PATCH] hotfix for the moisture not being visible for custom grain types --- src/bin/BinSettings.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/bin/BinSettings.tsx b/src/bin/BinSettings.tsx index c65bd31..413ac1f 100644 --- a/src/bin/BinSettings.tsx +++ b/src/bin/BinSettings.tsx @@ -2222,11 +2222,13 @@ export default function BinSettings(props: Props) { - {!isCustomInventory && ( Moisture + {isCustomInventory && ( + You are using a custom Grain type, the drying estimate may not be accurate + )} - )} + ); };