From 2700301e2fe0eb96193c45e9340c2d1449c06911 Mon Sep 17 00:00:00 2001 From: Tony Lee Date: Mon, 22 Jun 2026 12:05:20 -0400 Subject: [PATCH] fix: remove unused calendar component causing frontend CI failure Signed-off-by: Tony Lee --- frontend/components/ui/calendar.tsx | 63 ----------------------------- 1 file changed, 63 deletions(-) delete mode 100644 frontend/components/ui/calendar.tsx diff --git a/frontend/components/ui/calendar.tsx b/frontend/components/ui/calendar.tsx deleted file mode 100644 index efb6a2a..0000000 --- a/frontend/components/ui/calendar.tsx +++ /dev/null @@ -1,63 +0,0 @@ -"use client" - -import * as React from "react" - -import { DayPicker } from "react-day-picker" - -import { cn } from "@/lib/utils" -import { buttonVariants } from "@/components/ui/button" - -export type CalendarProps = React.ComponentProps - -function Calendar({ - className, - classNames, - showOutsideDays = true, - ...props -}: CalendarProps) { - return ( - - ) -} -Calendar.displayName = "Calendar" - -export { Calendar }