From e9f6667cf0680ca0eaea2609e62803d01bbe9ca4 Mon Sep 17 00:00:00 2001 From: SDCore Date: Tue, 21 Jul 2026 15:22:55 -0500 Subject: [PATCH] Add Smoke to Weather Condition List --- src/utils/weather.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/utils/weather.js b/src/utils/weather.js index f8ae17f..97772ff 100644 --- a/src/utils/weather.js +++ b/src/utils/weather.js @@ -24,6 +24,8 @@ export function getWeatherIcon(icon) { return `rain`; case "thunderstorm": return `tstorm`; + case "smoke": + return `smoke`; default: return `sunnyday`; }