Skip to content

Commit

Permalink
Fix [Batch run] crash 'TypeError: Cannot read properties of undefined (
Browse files Browse the repository at this point in the history
  • Loading branch information
illia-prokopchuk authored Jun 26, 2024
1 parent 4915d67 commit 20ead69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/Wizard/Wizard.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const Wizard = ({
defaultActions.push(
<Button
id="wizard-btn-next"
disabled={stepConfig.nextIsDisabled || isLastStep}
disabled={stepConfig?.nextIsDisabled || isLastStep}
onClick={goToNextStep}
label={'Next'}
type="button"
Expand Down

0 comments on commit 20ead69

Please sign in to comment.