This commit is contained in:
focp212@naver.com
2025-11-03 16:39:18 +09:00
parent 42afae8cfa
commit 06d9d82c78

View File

@@ -6,7 +6,6 @@ import 'react-calendar/dist/Calendar.css';
import { useEffect } from 'react';
import { CalendarType } from '@/entities/common/model/types';
import { useTranslation } from 'react-i18next';
import { IMAGE_ROOT } from '@/shared/constants/common';
import { FullMenuClose } from '@/entities/common/ui/full-menu-close';
interface NiceCalendarProps {
@@ -94,7 +93,7 @@ const NiceCalendar = ({
// For Korean locale, return only the day number without '일'
return date.toLocaleString('en', {
day: '2-digit',
day: 'numeric',
});
};