diff --git a/components/admin/jobs-table.tsx b/components/admin/jobs-table.tsx
index 1d710a4..3b1c312 100644
--- a/components/admin/jobs-table.tsx
+++ b/components/admin/jobs-table.tsx
@@ -126,8 +126,61 @@ function StatusTable({ jobs }: { jobs: Job[] }) {
)
}
-function CostsTable({ jobs: _jobs }: { jobs: Job[] }) {
- return null
+function CostRow({ job }: { job: Job }) {
+ const [pending, startTransition] = useTransition()
+ function handleCancel() { startTransition(() => cancelJobAction(job.id)) }
+ function handleDelete() { startTransition(() => deleteJobAction(job.id)) }
+ const costLabel = job.cost_usd != null ? `$${job.cost_usd.toFixed(4)}` : '—'
+ return (
+