diff --git a/src/components/calendar-picker-view/calendar-picker-view.tsx b/src/components/calendar-picker-view/calendar-picker-view.tsx index a0b686217c..11a47c2ea6 100644 --- a/src/components/calendar-picker-view/calendar-picker-view.tsx +++ b/src/components/calendar-picker-view/calendar-picker-view.tsx @@ -259,11 +259,11 @@ export const CalendarPickerView = forwardRef< if (props.selectionMode === 'range') { if (isBegin) { - contentWrapper(locale.Calendar.start) + return contentWrapper(locale.Calendar.start) } if (isEnd) { - contentWrapper(locale.Calendar.end) + return contentWrapper(locale.Calendar.end) } }