Compare commits

..

No commits in common. "8c5c802f720e291ced8ea27360a1db8717d445d4" and "7283140a3a5122301bf213f1643efe846198eb7c" have entirely different histories.

View File

@ -31,7 +31,7 @@ const DateRangePicker = ({
clickOpens: true,
maxDate: endDate,
onChange: (selectedDates, dateStr) => {
const [startDateString, endDateString] = dateStr.split(" to ");
const [startDateString, endDateString] = dateStr.split(" To ");
onRangeChange?.({ startDate: startDateString, endDate: endDateString });
},
});