@arquimedes.co/eureka-forms 2.0.38 → 2.0.40

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.
@@ -148,6 +148,10 @@ export var calcDefaultValue = function (step) {
148
148
  };
149
149
  export var iterateNestedSteps = function (idStep, steps, iteration) {
150
150
  var step = steps[idStep];
151
+ if (!step) {
152
+ console.error('Missing Step:', idStep);
153
+ return;
154
+ }
151
155
  iteration(step);
152
156
  if (step.type === StepTypes.MAPPER) {
153
157
  for (var _i = 0, _a = step.rootSteps; _i < _a.length; _i++) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arquimedes.co/eureka-forms",
3
3
  "repository": "git://github.com/Arquimede5/Eureka-Forms.git",
4
- "version": "2.0.38",
4
+ "version": "2.0.40",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
7
7
  "build": "react-scripts build",