Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 01:27:12 +00:00
co-authored by renee-png
parent 44920ba62a
commit 6becc98850
+15
View File
@@ -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;