From a7611b46c42ea9b4ebc57f0bed57c5b2d88ec736 Mon Sep 17 00:00:00 2001 From: Cosmo Date: Wed, 22 Apr 2026 20:19:04 +0000 Subject: [PATCH] fix: date input overflow, 7-day forecast on Home, screensaver button in settings --- app/page.tsx | 22 +++++++++++++++++++++- components/CalendarTab.tsx | 18 +++++++++--------- 2 files changed, 30 insertions(+), 10 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 5ab0ecb..67ffc0a 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -334,7 +334,7 @@ function HomeTab({ weather, sensors }: { weather: WeatherData | null; sensors: S {weather.forecast && weather.forecast.length > 0 && (
- {weather.forecast.slice(0, 3).map(day => { + {weather.forecast.map(day => { const d = new Date(day.date) return (
@@ -549,6 +549,19 @@ function SettingsTab({ city, onCityChange, onLogout, theme, onThemeChange }: { c )}
+ {/* Lock screen */} + + {/* Logout */}