We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa41d42 commit 39a6b2bCopy full SHA for 39a6b2b
packages/module/src/catalog/QuickStartTileHeader.tsx
@@ -1,5 +1,5 @@
1
import * as React from 'react';
2
-import { Button, Flex, Title } from '@patternfly/react-core';
+import { Button, Flex } from '@patternfly/react-core';
3
4
interface QuickStartTileHeaderProps {
5
name: string;
@@ -13,11 +13,9 @@ const QuickStartTileHeader: React.FC<QuickStartTileHeaderProps> = ({
13
onSelect,
14
}) => (
15
<Flex flexWrap={{ default: 'nowrap' }}>
16
- <Title headingLevel="h3" data-test="title" id={quickStartId}>
17
- <Button variant="link" isInline onClick={onSelect}>
18
- {name}
19
- </Button>
20
- </Title>
+ <Button data-test="title" id={quickStartId} variant="link" isInline onClick={onSelect}>
+ {name}
+ </Button>
21
</Flex>
22
);
23
0 commit comments