From b7612ca2bc877e0612d6b18932f6671c2c432f2e Mon Sep 17 00:00:00 2001 From: HyeonJongKim Date: Thu, 6 Nov 2025 09:39:58 +0900 Subject: [PATCH] =?UTF-8?q?-=20NiceCalendar=20MinDate=20=EB=82=A0=EC=A7=9C?= =?UTF-8?q?=20=EC=A0=9C=EC=95=BD=20=EC=9E=84=EC=8B=9C=20=ED=95=B4=EC=A0=9C?= =?UTF-8?q?=20(=EC=B6=94=ED=9B=84=20=EC=9B=90=EB=B3=B5=20=ED=95=84?= =?UTF-8?q?=EC=9A=94)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/shared/ui/calendar/nice-calendar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/shared/ui/calendar/nice-calendar.tsx b/src/shared/ui/calendar/nice-calendar.tsx index 4429bf8..dc2c859 100644 --- a/src/shared/ui/calendar/nice-calendar.tsx +++ b/src/shared/ui/calendar/nice-calendar.tsx @@ -53,7 +53,8 @@ const NiceCalendar = ({ }; const setMinMaxValueDate = () => { if(calendarType === CalendarType.Start){ - setMinDate(propMinDate || moment(endDate, 'YYYY.MM.DD').subtract(1, 'month').toDate()); + //setMinDate(propMinDate || moment(endDate, 'YYYY.MM.DD').subtract(1, 'month').toDate()); + setMinDate(propMinDate || undefined); if(!!endDate){ setMaxDate(moment(endDate, 'YYYY.MM.DD').toDate()); }