optimized-react-component-library-xyz123 0.34.2 → 0.34.3
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.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1352,7 +1352,9 @@ function buildStepCategoryGroupQuestionStructure(questions, steps, validationErr
|
|
|
1352
1352
|
for (const [category, groupMap] of Array.from(categoryMap.entries())) {
|
|
1353
1353
|
const questionGroups = [];
|
|
1354
1354
|
for (const [groupId, questions2] of Array.from(groupMap.entries())) {
|
|
1355
|
+
console.log(questions2);
|
|
1355
1356
|
const firstVisibleQuestion = questions2.find((q) => q.visible);
|
|
1357
|
+
console.log(firstVisibleQuestion);
|
|
1356
1358
|
questionGroups.push({
|
|
1357
1359
|
questionGroupId: groupId,
|
|
1358
1360
|
questionGroupType: questions2[0].questionGroupType,
|