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:45 +00:00
co-authored by renee-png
parent 3ed1f2a0f4
commit 30b32fe300
+15
View File
@@ -9,6 +9,21 @@ import { useAuth } from "@/lib/auth";
import { Plus, Trash2, Loader2, Receipt as ReceiptIcon } from "lucide-react";
import { formatCurrency, formatDate } from "@/lib/format";
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;
}
export function CaseExpensesTab({ caseId }: { caseId: string }) {
const { user } = useAuth();