diff --git a/src/components/cases/time-tab.tsx b/src/components/cases/time-tab.tsx index 83693d6..ce376fb 100644 --- a/src/components/cases/time-tab.tsx +++ b/src/components/cases/time-tab.tsx @@ -11,6 +11,21 @@ import { Plus, Trash2, Loader2, FilePlus } from "lucide-react"; import { formatCurrency, formatDate } from "@/lib/format"; import { roundToTenth } from "@/lib/timer"; import { toast } from "sonner"; +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue, +} from "@/components/ui/select"; + +interface FeeItem { + id: string; + name: string; + description: string | null; + amount: number; + billable: boolean; +} interface CaseTimeTabProps { caseRecord: any;