Skip to content

Commit 0d7b32c

Browse files
hbuchelHeather Buchel
andauthored
docs(fix): hide tertiary pages on /components page (#2166)
Co-authored-by: Heather Buchel <[email protected]>
1 parent c568b96 commit 0d7b32c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/pages/[platform]/components/ComponentsGrid.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const ComponentGridSection = ({ heading, components }) => {
4141

4242
const platformComponents = components.filter((component) => {
4343
if (component.platforms) {
44-
return component.platforms.includes(platform);
44+
return component.platforms.includes(platform) && !component.tertiary;
4545
}
4646
return true;
4747
});

0 commit comments

Comments
 (0)