fix: resolve ESLint errors blocking Docker build
All checks were successful
Build and Deploy / Build & Push (push) Successful in 2m45s

- Remove unused formatDate() from park page (replaced by formatShortDate)
- Remove unused date prop from DayCell component
- Change let to const for cellBorderRadius in ParkCard
- Change let to const for bg in ParkMonthCalendar

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-04 11:55:17 -04:00
parent e48038c399
commit b0bbb4d465
4 changed files with 2 additions and 11 deletions

View File

@@ -139,7 +139,7 @@ export function ParkMonthCalendar({ parkId, year, month, monthData, today }: Par
const isOpen = dayData?.isOpen && dayData?.hoursLabel;
const isPH = dayData?.specialType === "passholder_preview";
let bg = isToday
const bg = isToday
? "var(--color-today-bg)"
: isWeekend
? "var(--color-weekend-header)"