FIX: Errors may be null-ish (#28826)
This commit is contained in:
parent
995931b6ec
commit
917621ed80
|
@ -23,7 +23,7 @@ export async function applyModelTransformations(modelName, models) {
|
|||
transformer.prefix,
|
||||
`transformer for the \`${modelName}\` model failed with:`,
|
||||
err,
|
||||
err.stack
|
||||
err?.stack
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue