diff --git a/src/resources/extensions/gsd/auto-post-unit.ts b/src/resources/extensions/gsd/auto-post-unit.ts index 7a1e32c0e..bff928beb 100644 --- a/src/resources/extensions/gsd/auto-post-unit.ts +++ b/src/resources/extensions/gsd/auto-post-unit.ts @@ -84,7 +84,8 @@ export interface RogueFileWrite { * in postUnitPostVerification() eventually ingests rogue files, but explicit * detection provides immediate diagnostics so operators know the prompt failed. */ -function hasNonEmptyFields(row: Record | null, fields: string[]): boolean { +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function hasNonEmptyFields(row: Record | null, fields: string[]): boolean { if (!row) return false; return fields.some(f => String(row[f] || "").trim().length > 0); }