| 33 | } |
| 34 | |
| 35 | interface BulkImportResponse { |
| 36 | total: number |
| 37 | succeeded: number |
| 38 | failed: number |
| 39 | results: ImportResult[] |
| 40 | } |
| 41 | |
| 42 | export default function AdminImportPage() { |
| 43 | const isAdmin = useQuery(api.admin.isAdmin) |
nothing calls this directly
no outgoing calls
no test coverage detected