Skip to content

Commit

Permalink
Final update to default mode
Browse files Browse the repository at this point in the history
Signed-off-by: yael-spinner <[email protected]>
  • Loading branch information
yael-spinner committed Oct 10, 2024
1 parent fcd823f commit ab92d33
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -390,12 +390,12 @@ export const AnalysisWizard: React.FC<IAnalysisWizard> = ({

const analyzableApplications = useAnalyzableApplications(applications, mode);

const isStepEnabled = (stepId: StepId) => true; //{
// return (
// stepIdReached + 1 >= stepId &&
// (firstInvalidStep === null || firstInvalidStep >= stepId)
// );
// };
const isStepEnabled = (stepId: StepId) => {
return (
stepIdReached + 1 >= stepId &&
(firstInvalidStep === null || firstInvalidStep >= stepId)
);
};

const steps = [
<WizardStep
Expand Down

0 comments on commit ab92d33

Please sign in to comment.