FIX: Errors may be null-ish (#28826)

This commit is contained in:
Jarek Radosz 2024-09-10 20:42:02 +02:00 committed by GitHub
parent 995931b6ec
commit 917621ed80
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export async function applyModelTransformations(modelName, models) {
transformer.prefix,
`transformer for the \`${modelName}\` model failed with:`,
err,
err.stack
err?.stack
);
}
}