diff --git a/src/lib/invoice-pdf.ts b/src/lib/invoice-pdf.ts index 2fda269..b4bc7ad 100644 --- a/src/lib/invoice-pdf.ts +++ b/src/lib/invoice-pdf.ts @@ -370,7 +370,8 @@ export async function downloadInvoicePdf(input: InvoicePdfInput, filename: strin const multipleCases = input.groups.length > 1; for (const g of input.groups) { - if (multipleCases) drawCaseHeader(g); + // Always show the case name above its charges (per-case subtotal only when >1 case). + drawCaseHeader(g); for (const item of g.items) { const isNonBillable = item.billable === false;