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" }; }