From 4dcdaa474addf517501258319203dbfb9580f855 Mon Sep 17 00:00:00 2001 From: jason Date: Mon, 30 Mar 2026 14:44:08 -0500 Subject: [PATCH] weather error indicator --- apps/client/src/pages/Dashboard.tsx | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/apps/client/src/pages/Dashboard.tsx b/apps/client/src/pages/Dashboard.tsx index 93f2bf9..f998e7b 100644 --- a/apps/client/src/pages/Dashboard.tsx +++ b/apps/client/src/pages/Dashboard.tsx @@ -177,12 +177,24 @@ export default function Dashboard() { )} - {/* Weather not configured nudge (subtle) */} + {/* Weather not configured nudge */} {weather && !weather.configured && (

Configure weather →

)} + + {/* Weather configured but erroring */} + {weather?.configured && weather.error && ( +
+ ⚠️ +
+

Weather unavailable

+

{weather.error}

+ Check settings → +
+
+ )} {/* ── Main widget grid ───────────────────────────────────────────── */}