(columnId: string, rowIndex: number)
| 46 | const { availableActions } = useImporterDefinition(); |
| 47 | |
| 48 | function cellErrors(columnId: string, rowIndex: number) { |
| 49 | return sheetValidationErrors.filter( |
| 50 | (validation) => |
| 51 | validation.columnId === columnId && validation.rowIndex === rowIndex |
| 52 | ); |
| 53 | } |
| 54 | |
| 55 | const headerClass = |
| 56 | 'bg-hello-csv-muted py-3.5 pr-3 pl-4 text-left text-sm font-semibold text-gray-900 whitespace-nowrap border-y border-gray-300'; |
no outgoing calls
no test coverage detected