diff --git a/src/components/cases/time-tab.tsx b/src/components/cases/time-tab.tsx
index c22fb93..79d5c14 100644
--- a/src/components/cases/time-tab.tsx
+++ b/src/components/cases/time-tab.tsx
@@ -309,7 +309,24 @@ export function CaseTimeTab({ caseRecord, onInvoice }: CaseTimeTabProps) {
{e.billable ? formatCurrency(Number(e.hours) * Number(e.hourly_rate)) : "—"} |
{!e.billable ? "Non-billable" : e.invoice_id ? "Invoiced" : "Unbilled"} |
- {!e.invoice_id && }
+
+ {e.billable && (
+
+ )}
+ {!e.invoice_id && }
+
|
))}