From 367c35461b5b049b60017e0512464a5c215f542f Mon Sep 17 00:00:00 2001 From: ztimson Date: Wed, 24 Jun 2026 15:18:12 -0400 Subject: [PATCH] Updated forecast summary --- server/src/openweather.mjs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/server/src/openweather.mjs b/server/src/openweather.mjs index 8ee5a88..7914025 100644 --- a/server/src/openweather.mjs +++ b/server/src/openweather.mjs @@ -57,10 +57,6 @@ export function getWeatherCondition(data) { return { label: "Light Rain", code: 500, icon: "09d" }; } - if (data.lightning_rate > 500) { - return { label: "Thunderstorm", code: 211, icon: "11d" }; - } - if (data.visibility < 10) { return { label: "Mist", code: 701, icon: "50d" }; }