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.
package/dist/index.cjs CHANGED
@@ -9696,11 +9696,11 @@ var Wizard = function Wizard(props) {
9696
9696
  action: prev
9697
9697
  }), current < steps.length - 1 ? /*#__PURE__*/React__default["default"].createElement(Button, {
9698
9698
  label: "Siguiente",
9699
- disabled: stepRef.current.isValid(),
9699
+ disabled: stepRef.current && stepRef.current.isValid(),
9700
9700
  action: next
9701
9701
  }) : /*#__PURE__*/React__default["default"].createElement(Button, {
9702
9702
  label: "Finalizar",
9703
- disabled: stepRef.current.isValid(),
9703
+ disabled: stepRef.current && stepRef.current.isValid(),
9704
9704
  action: finish,
9705
9705
  raised: true
9706
9706
  })));