Falsche Zeitzone bei Buchungen und HTTP status codes als Fehlermeldung behoben

This commit is contained in:
PxlLoewe
2025-10-01 22:23:27 +02:00
parent dc4a3ab4d8
commit ada041bd4a
4 changed files with 64 additions and 44 deletions

View File

@@ -12,7 +12,7 @@ export const DateInput = ({
<input
type="datetime-local"
className="input"
value={formatDate(value || new Date(), "yyyy-MM-dd hh:mm")}
value={formatDate(value || new Date(), "yyyy-MM-dd HH:mm")}
onChange={(e) => {
const date = e.target.value ? new Date(e.target.value) : null;
if (!date) return;