Skip to content

Commit

Permalink
fix(config): Allow empty New Relic destination array in config file
Browse files Browse the repository at this point in the history
Fixes #929
  • Loading branch information
Göran Sander committed Oct 23, 2024
1 parent 4010a1c commit 9601a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/config-file-schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const confifgFileSchema = {
properties: {
enable: { type: 'boolean' },
destinationAccount: {
type: 'array',
type: ['array', 'null'],
minItems: 0,
items: {
type: 'string',
Expand Down

0 comments on commit 9601a9c

Please sign in to comment.