catchup-library-web 1.6.2 → 1.6.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 CHANGED
@@ -3464,8 +3464,7 @@ var ActivityBodyContent = ({
3464
3464
  contentMap,
3465
3465
  answerMap
3466
3466
  }) => {
3467
- console.log(bodyMap, contentMap);
3468
- if (!bodyMap || !contentMap) return null;
3467
+ if (!bodyMap) return null;
3469
3468
  const processBodyValue = (bodyValue, contentType, answerMap2) => {
3470
3469
  var _a;
3471
3470
  let currentQQIndex = 0;
@@ -3531,7 +3530,6 @@ var ActivityBodyContent = ({
3531
3530
  key
3532
3531
  });
3533
3532
  }).filter(Boolean);
3534
- console.log(processedBodies);
3535
3533
  return /* @__PURE__ */ (0, import_jsx_runtime13.jsx)("div", { className: "flex flex-col justify-center items-center", children: processedBodies.map((body, index) => /* @__PURE__ */ (0, import_jsx_runtime13.jsx)(
3536
3534
  ShowBodyMediaByContentType_default,
3537
3535
  {
package/dist/index.mjs CHANGED
@@ -3272,8 +3272,7 @@ var ActivityBodyContent = ({
3272
3272
  contentMap,
3273
3273
  answerMap
3274
3274
  }) => {
3275
- console.log(bodyMap, contentMap);
3276
- if (!bodyMap || !contentMap) return null;
3275
+ if (!bodyMap) return null;
3277
3276
  const processBodyValue = (bodyValue, contentType, answerMap2) => {
3278
3277
  var _a;
3279
3278
  let currentQQIndex = 0;
@@ -3339,7 +3338,6 @@ var ActivityBodyContent = ({
3339
3338
  key
3340
3339
  });
3341
3340
  }).filter(Boolean);
3342
- console.log(processedBodies);
3343
3341
  return /* @__PURE__ */ jsx13("div", { className: "flex flex-col justify-center items-center", children: processedBodies.map((body, index) => /* @__PURE__ */ jsx13(
3344
3342
  ShowBodyMediaByContentType_default,
3345
3343
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "catchup-library-web",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -7,8 +7,7 @@ const ActivityBodyContent = ({
7
7
  contentMap,
8
8
  answerMap,
9
9
  }: IActivityBodyContentProps) => {
10
- console.log(bodyMap, contentMap);
11
- if (!bodyMap || !contentMap) return null;
10
+ if (!bodyMap) return null;
12
11
 
13
12
  const processBodyValue = (
14
13
  bodyValue: string,
@@ -92,8 +91,6 @@ const ActivityBodyContent = ({
92
91
  })
93
92
  .filter(Boolean);
94
93
 
95
- console.log(processedBodies);
96
-
97
94
  return (
98
95
  <div className="flex flex-col justify-center items-center">
99
96
  {processedBodies.map((body, index) => (