Skip to content

Commit

Permalink
Merge pull request #13125 from MisRob/bugfix-13058
Browse files Browse the repository at this point in the history
Fix "Invalid prop" error
  • Loading branch information
rtibbles authored Mar 3, 2025
2 parents 84e8160 + 696a31a commit b7e66a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
type: Object,
required: true,
validator(value) {
const inputKeys = ['channels', 'accessibility_labels', 'languages', 'grade_levels'];
const inputKeys = ['accessibility_labels', 'languages', 'grade_levels'];
return inputKeys.every(k => Object.prototype.hasOwnProperty.call(value, k));
},
},
Expand Down

0 comments on commit b7e66a2

Please sign in to comment.