catchup-library-web 2.0.17 → 2.0.18

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 CHANGED
@@ -7511,6 +7511,7 @@ var ActivityPreviewByAnswerData = ({
7511
7511
  if (activityTemplateTypeList.length === 0) return;
7512
7512
  const currentAnswerMapMap = {};
7513
7513
  for (const activityTemplateMap of activityTemplateTypeList) {
7514
+ console.log(activityTemplateMap, answerType);
7514
7515
  if (answerType === activityTemplateMap.type) {
7515
7516
  currentAnswerMapMap[activityTemplateMap.type] = data.answerMap;
7516
7517
  } else {
package/dist/index.mjs CHANGED
@@ -7289,6 +7289,7 @@ var ActivityPreviewByAnswerData = ({
7289
7289
  if (activityTemplateTypeList.length === 0) return;
7290
7290
  const currentAnswerMapMap = {};
7291
7291
  for (const activityTemplateMap of activityTemplateTypeList) {
7292
+ console.log(activityTemplateMap, answerType);
7292
7293
  if (answerType === activityTemplateMap.type) {
7293
7294
  currentAnswerMapMap[activityTemplateMap.type] = data.answerMap;
7294
7295
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "catchup-library-web",
3
- "version": "2.0.17",
3
+ "version": "2.0.18",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -104,6 +104,7 @@ const ActivityPreviewByAnswerData = ({
104
104
  if (activityTemplateTypeList.length === 0) return;
105
105
  const currentAnswerMapMap: any = {};
106
106
  for (const activityTemplateMap of activityTemplateTypeList) {
107
+ console.log(activityTemplateMap, answerType);
107
108
  if (answerType === activityTemplateMap.type) {
108
109
  currentAnswerMapMap[activityTemplateMap.type] = data.answerMap;
109
110
  } else {