Skip to content

Commit f268385

Browse files
remove quickstarts from the catalog (#669)
1 parent f399101 commit f268385

File tree

1 file changed

+0
-38
lines changed

1 file changed

+0
-38
lines changed

.build/src/app/QuickStartCatalogFederated.tsx

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -92,44 +92,6 @@ const MasQuickStartCatalog: React.FC = () => {
9292

9393
const CatalogWithSections = (
9494
<>
95-
<QuickStartCatalogSection>
96-
<TextContent>
97-
<Text component="h2">Quick starts</Text>
98-
<Text component="p" className="mk-catalog-sub">
99-
Step-by-step instructions and tasks
100-
</Text>
101-
</TextContent>
102-
<Gallery className="pfext-quick-start-catalog__gallery" hasGutter>
103-
{allQuickStarts
104-
.filter(
105-
(quickStart) =>
106-
!quickStart.spec.type ||
107-
quickStart.spec.type.text !== "Documentation"
108-
)
109-
.sort(sortFnc)
110-
.map((quickStart) => {
111-
const {
112-
metadata: { name: id },
113-
} = quickStart;
114-
115-
return (
116-
<GalleryItem
117-
key={id}
118-
className="pfext-quick-start-catalog__gallery-item"
119-
>
120-
<QuickStartTile
121-
quickStart={quickStart}
122-
isActive={id === activeQuickStartID}
123-
status={getQuickStartStatus(allQuickStartStates, id)}
124-
/>
125-
</GalleryItem>
126-
);
127-
})}
128-
</Gallery>
129-
</QuickStartCatalogSection>
130-
<QuickStartCatalogSection>
131-
<Divider />
132-
</QuickStartCatalogSection>
13395
<QuickStartCatalogSection>
13496
<TextContent>
13597
<Text component="h2">Documentation</Text>

0 commit comments

Comments
 (0)