@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.es.js CHANGED
@@ -2148,7 +2148,7 @@ const QuickStartController = ({ quickStart, nextQuickStarts, contentRef, footerC
2148
2148
  const getQuickStartActiveTask = React.useCallback(() => {
2149
2149
  let activeTaskNumber = 0;
2150
2150
  while (activeTaskNumber !== totalTasks &&
2151
- activeQuickStartState[`taskStatus${activeTaskNumber}`] !== QuickStartTaskStatus.INIT) {
2151
+ activeQuickStartState[`taskStatus${activeTaskNumber}`] === QuickStartTaskStatus.SUCCESS) {
2152
2152
  activeTaskNumber++;
2153
2153
  }
2154
2154
  return activeTaskNumber;