From 0878eb0596981d4c25466b4abf113a013d0aa43f Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 1 Sep 2026 01:45:03 +0000 Subject: [PATCH] fix(web): drop duplicate openToDate on the ends-on picker #3036 and #3043 each added an openToDate. Keep the event-month fallback when no until is set so type-check and lint pass on main. Co-authored-by: tyler --- .../RecurrenceSection/components/EndsOnDate.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/web/src/views/Forms/EventForm/DateControlsSection/RecurrenceSection/components/EndsOnDate.tsx b/packages/web/src/views/Forms/EventForm/DateControlsSection/RecurrenceSection/components/EndsOnDate.tsx index 06528b52c..3b474263f 100644 --- a/packages/web/src/views/Forms/EventForm/DateControlsSection/RecurrenceSection/components/EndsOnDate.tsx +++ b/packages/web/src/views/Forms/EventForm/DateControlsSection/RecurrenceSection/components/EndsOnDate.tsx @@ -36,7 +36,6 @@ export const EndsOnDate = ({ calendarClassName="recurrenceUntilDatePicker" isOpen={open} minDate={miniDate.toDate()} - openToDate={until ?? miniDate.toDate()} onCalendarClose={() => setOpen(false)} onCalendarOpen={() => setOpen(true)} onChange={() => null}