diff --git a/components/booking/date-picker.tsx b/components/booking/date-picker.tsx
index ffb03be..cb0bb8e 100644
--- a/components/booking/date-picker.tsx
+++ b/components/booking/date-picker.tsx
@@ -130,82 +130,4 @@ export default function DatePicker({ selectedDate, onDateSelect, minDate, disabl
)
-}
- return false
- }
-
- const isDateSelected = (date: Date) => {
- return selectedDate && isSameDay(date, selectedDate)
- }
-
- return (
-
-
-
-
- {format(currentMonth, 'MMMM yyyy', { locale: es })}
-
-
-
-
-
- {['L', 'M', 'X', 'J', 'V', 'S', 'D'].map((day, index) => (
-
- {day}
-
- ))}
-
-
-
- {days.map((date, index) => {
- const disabled = isDateDisabled(date)
- const selected = isDateSelected(date)
- const today = isToday(date)
- const notCurrentMonth = !isSameMonth(date, currentMonth)
-
- return (
-
- )
- })}
-
-
- )
}
\ No newline at end of file