@patternfly/quickstarts 6.1.0-prerelease.3 → 6.1.0-prerelease.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1617,8 +1617,7 @@ const QuickStartTileFooterExternal = ({ link, quickStartId, }) => {
1617
1617
  };
1618
1618
 
1619
1619
  const QuickStartTileHeader = ({ name, quickStartId, onSelect, }) => (React__namespace.createElement(reactCore.Flex, { flexWrap: { default: 'nowrap' } },
1620
- React__namespace.createElement(reactCore.Title, { headingLevel: "h3", "data-test": "title", id: quickStartId },
1621
- React__namespace.createElement(reactCore.Button, { variant: "link", isInline: true, onClick: onSelect }, name))));
1620
+ React__namespace.createElement(reactCore.Button, { "data-test": "title", id: quickStartId, variant: "link", isInline: true, onClick: onSelect }, name)));
1622
1621
 
1623
1622
  const QuickStartTile = ({ quickStart, status, isActive, onClick = () => { }, action, }) => {
1624
1623
  const { metadata: { name: id }, spec: { icon, tasks, displayName, description, durationMinutes, prerequisites, link, type }, } = quickStart;