ywana-core8 0.0.656 → 0.0.658

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.
@@ -9688,11 +9688,11 @@ var Wizard = function Wizard(props) {
9688
9688
  action: prev
9689
9689
  }), current < steps.length - 1 ? /*#__PURE__*/React.createElement(Button, {
9690
9690
  label: "Siguiente",
9691
- disabled: stepRef.current.isValid(),
9691
+ disabled: stepRef.current && stepRef.current.isValid(),
9692
9692
  action: next
9693
9693
  }) : /*#__PURE__*/React.createElement(Button, {
9694
9694
  label: "Finalizar",
9695
- disabled: stepRef.current.isValid(),
9695
+ disabled: stepRef.current && stepRef.current.isValid(),
9696
9696
  action: finish,
9697
9697
  raised: true
9698
9698
  })));