Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ If the tools return errors, you would need to rerun it with the right parameters
const errors = await validate(obj);
if (errors.length) {
return {
errors: JSON.stringify(errors),
output: { errors: JSON.stringify(errors) },
};
}

Expand All @@ -174,7 +174,7 @@ If the tools return errors, you would need to rerun it with the right parameters

if (errorsLength.length) {
return {
errors: JSON.stringify(errorsLength),
output: { errors: JSON.stringify(errorsLength) },
};
}
}
Expand Down