@patternfly/quickstarts 5.0.0 → 5.1.0-prerelease.1

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
@@ -2191,7 +2191,7 @@ const QuickStartController = ({ quickStart, nextQuickStarts, contentRef, footerC
2191
2191
  const getQuickStartActiveTask = React__namespace.useCallback(() => {
2192
2192
  let activeTaskNumber = 0;
2193
2193
  while (activeTaskNumber !== totalTasks &&
2194
- activeQuickStartState[`taskStatus${activeTaskNumber}`] !== exports.QuickStartTaskStatus.INIT) {
2194
+ activeQuickStartState[`taskStatus${activeTaskNumber}`] === exports.QuickStartTaskStatus.SUCCESS) {
2195
2195
  activeTaskNumber++;
2196
2196
  }
2197
2197
  return activeTaskNumber;