Skip to content

Commit

Permalink
feat(menu): fix support for media menu item (#621)
Browse files Browse the repository at this point in the history
  • Loading branch information
CarinaDraganJW authored Sep 25, 2024
1 parent 0b3d607 commit 4ffb849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/common/src/utils/configSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const menuSchema: SchemaOf<Menu> = object().shape({
label: string().defined(),
contentId: string().defined(),
filterTags: string().notRequired(),
type: mixed().oneOf(['playlist', 'content_list']).notRequired(),
type: mixed().oneOf(['playlist', 'content_list', 'media']).notRequired(),
});

const featuresSchema: SchemaOf<Features> = object({
Expand Down

0 comments on commit 4ffb849

Please sign in to comment.