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 d1e77f8ef3
commit ffef9243dd

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];
}