diff --git a/packages/documentation-framework/components/sectionGallery/sectionGalleryWrapper.js b/packages/documentation-framework/components/sectionGallery/sectionGalleryWrapper.js index 9b67b94f84..d6cb743f2f 100644 --- a/packages/documentation-framework/components/sectionGallery/sectionGalleryWrapper.js +++ b/packages/documentation-framework/components/sectionGallery/sectionGalleryWrapper.js @@ -70,6 +70,9 @@ export const SectionGalleryWrapper = ({ const id = itemData.id || title; // Display beta label if tab other than a '-next' tab is marked Beta const isDeprecated = + // TODO: remove hardcoded Tile when Core PR merges + // https://github.com/patternfly/patternfly/pull/7178 + id === 'Tile' || ( !isSubsection && sources && sources.some( @@ -79,7 +82,7 @@ export const SectionGalleryWrapper = ({ ) && !sources.some( (source) => source.source === 'react' || source.source === 'html' - ); + )); const isBeta = !isSubsection && sources &&