Skip to content

Commit

Permalink
fix: value should be array in second format (#1866)
Browse files Browse the repository at this point in the history
  • Loading branch information
filipgutica authored Dec 19, 2024
1 parent fea0ea1 commit d1e7cc9
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,10 @@ const filtersFn = <T extends readonly string[]>(filterableDimensions: T) => ({
enum: exploreFilterTypesV2,
},
value: {
type: ['string', 'number', 'null'],
type: 'array',
items: {
type: ['string', 'number', 'null'],
},
},
},
required: [
Expand Down

0 comments on commit d1e7cc9

Please sign in to comment.