We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b56a5f3 commit d3adbccCopy full SHA for d3adbcc
packages/app/src/cli/commands/app/execute.ts
@@ -46,7 +46,7 @@ export default class Execute extends AppLinkedCommand {
46
query: flags.query,
47
})
48
49
- if (errors && errors.length > 0) {
+ if (errors?.length) {
50
const errorMessages = errors.map((error) => `${error.field?.join('.') ?? 'unknown'}: ${error.message}`).join('\n')
51
renderWarning({
52
headline: 'Bulk operation errors.',
0 commit comments