| 1 | import { XCircle } from 'lucide-react'; |
| 2 | |
| 3 | interface FormErrorsProps { |
| 4 | id: string; |
| 5 | errors?: Record<string, string[] | undefined>; |
| 6 | } |
| 7 | |
| 8 | export const FormErrors = ({ id, errors }: FormErrorsProps) => { |
| 9 | if (!errors) { |
nothing calls this directly
no outgoing calls
no test coverage detected