diff --git a/public/index.html b/public/index.html index 6ecc0c2..1cbf754 100644 --- a/public/index.html +++ b/public/index.html @@ -1889,9 +1889,17 @@ {/* 24 hour cells */} {Array.from({ length: 24 }, (_, hour) => { - const bandData = hourlyPredictions?.[band]; - const hourData = bandData?.find(h => h.hour === hour); - const rel = hourData?.reliability || 0; + // For current hour, use currentBands (same hybrid data as bars view) + // For other hours, use hourlyPredictions + let rel; + if (hour === currentHour) { + const currentBandData = currentBands.find(b => b.band === band); + rel = currentBandData?.reliability || 0; + } else { + const bandData = hourlyPredictions?.[band]; + const hourData = bandData?.find(h => h.hour === hour); + rel = hourData?.reliability || 0; + } return (