| 16 | } |
| 17 | |
| 18 | interface ProcessedProjectsProps { |
| 19 | showHeader?: boolean; |
| 20 | maxItems?: number; |
| 21 | className?: string; |
| 22 | messages?: Record<string, Record<string, string>>; // Translation messages with proper typing |
| 23 | } |
| 24 | |
| 25 | export default function ProcessedProjects({ |
| 26 | showHeader = true, |
nothing calls this directly
no outgoing calls
no test coverage detected