Fix: Add missing Category interface to audit-workspace types

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-25 15:02:53 +02:00
parent 03fc0c5945
commit deb405a3a1

View File

@@ -54,6 +54,12 @@ export interface AIInterpretation {
error?: string
}
export interface Category {
id: string
name: string
requirement_count: number
}
export const IMPLEMENTATION_STATUS = {
not_started: { label: 'Nicht gestartet', color: 'bg-slate-400' },
in_progress: { label: 'In Arbeit', color: 'bg-yellow-500' },