From af85775dd1dec61b057b8c7d0047c2f59802949b Mon Sep 17 00:00:00 2001 From: Matt Hadden Date: Wed, 8 May 2024 21:39:39 -0400 Subject: [PATCH] fix(outlook): erroring if normal max was missing (#750) --- src/display/components/screens/outlook.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/display/components/screens/outlook.tsx b/src/display/components/screens/outlook.tsx index f45d4edf..9aa3b346 100644 --- a/src/display/components/screens/outlook.tsx +++ b/src/display/components/screens/outlook.tsx @@ -67,8 +67,8 @@ export function OutlookScreen(props: OutlookScreenProps) { ))}
  • - Normal Low {almanac?.temperatures?.normalMin?.value?.toFixed(0) ?? ""}. High{" "} - {almanac?.temperatures?.normalMax?.value.toFixed(0) ?? ""}. + Normal Low {almanac?.temperatures?.normalMin?.value?.toFixed(0) ?? "N/A"}. High{" "} + {almanac?.temperatures?.normalMax?.value?.toFixed(0) ?? "N/A"}.