From bd46968b903710af9fb426d1f0459c1b795713a6 Mon Sep 17 00:00:00 2001 From: augmentedpotato Date: Tue, 7 Apr 2026 22:44:50 -0600 Subject: [PATCH] Fixed(?) being unable to create appointments on today's date --- web/app/appointments/page.js | 1 - 1 file changed, 1 deletion(-) diff --git a/web/app/appointments/page.js b/web/app/appointments/page.js index f8e4ec2d..cd3746a6 100644 --- a/web/app/appointments/page.js +++ b/web/app/appointments/page.js @@ -392,7 +392,6 @@ function AppointmentsPage() { function getMinDate() { const d = new Date(); - d.setDate(d.getDate() + 1); return d.toISOString().split("T")[0]; }