diff --git a/frontend/src/components/deadlines/DeadlineCalculator.tsx b/frontend/src/components/deadlines/DeadlineCalculator.tsx index c855ce3..9427075 100644 --- a/frontend/src/components/deadlines/DeadlineCalculator.tsx +++ b/frontend/src/components/deadlines/DeadlineCalculator.tsx @@ -101,7 +101,7 @@ export function DeadlineCalculator() { const seen = new Set(); for (const pt of types) { const j = pt.jurisdiction ?? "Sonstige"; - const c = (pt as Record).category as string ?? "hauptverfahren"; + const c = pt.category ?? "hauptverfahren"; const key = `${j}::${c}`; if (!seen.has(key)) { seen.add(key);