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

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
);
}
}