- {weatherData.hourly.map((hour, index) => {
+ {weatherData.hourly.map((hour) => {
const hourNum = new Date(hour.time).getHours()
const isNow = hourNum === new Date().getHours()
const IconComponent = getWeatherInfo(hour.weatherCode).icon
diff --git a/src/components/daily-report/weather-helpers.ts b/src/components/daily-report/weather-helpers.ts
index 1697cdd..1978938 100644
--- a/src/components/daily-report/weather-helpers.ts
+++ b/src/components/daily-report/weather-helpers.ts
@@ -1,4 +1,4 @@
-import { Thermometer, Sun, Droplets, Wind, Leaf, AlertTriangle } from 'lucide-react'
+import { Thermometer, Sun, Droplets, Wind, Leaf } from 'lucide-react'
import { WeatherData, GreenhouseAlert } from './types'
import { toPersianDigits } from './utils'