Fixed(?) being unable to create appointments on today's date

This commit is contained in:
augmentedpotato
2026-04-07 22:44:50 -06:00
parent b3ff789f1b
commit bd46968b90

View File

@@ -392,7 +392,6 @@ function AppointmentsPage() {
function getMinDate() {
const d = new Date();
d.setDate(d.getDate() + 1);
return d.toISOString().split("T")[0];
}