diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 50b1600..99ec8ca 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -1008,9 +1008,9 @@ function PushScheduler({ toast }) { api('/tools/nachrichten/pushover').then(d=>setHasPushover(!!(d.user_key&&d.app_token))).catch(()=>{}); }, [isOpen]); - // Vorauswahl: jetzt + 1 Stunde in Lokalzeit + // Vorauswahl: aktuelle Lokalzeit const defaultDt = () => { - const d = new Date(Date.now() + 60*60*1000); + const d = new Date(); const p = n => String(n).padStart(2,'0'); return `${d.getFullYear()}-${p(d.getMonth()+1)}-${p(d.getDate())}T${p(d.getHours())}:${p(d.getMinutes())}`; };