From 2380aafbf05834e7fa227e9a09b8066161db734a Mon Sep 17 00:00:00 2001 From: Katrina Connors <32425204+katconnors@users.noreply.github.com> Date: Tue, 4 Jun 2024 13:41:23 -0700 Subject: [PATCH] fixed min check for iep end date (#335) --- src/pages/students/[student_id].tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/students/[student_id].tsx b/src/pages/students/[student_id].tsx index e1103049..bd75210f 100644 --- a/src/pages/students/[student_id].tsx +++ b/src/pages/students/[student_id].tsx @@ -351,7 +351,7 @@ const ViewStudentPage = () => { type="date" name="end_date" defaultValue={endDate} - inputProps={{ min: { startDate } }} + inputProps={{ min: startDate }} required />