catchup-library-web 2.1.5 → 2.1.6
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
|
@@ -7261,8 +7261,7 @@ var ActivityPreviewByData = ({
|
|
|
7261
7261
|
}, [data, lockedType, typeOptionList, showDifficulty]);
|
|
7262
7262
|
if (!data) return;
|
|
7263
7263
|
if (!selectedType) return;
|
|
7264
|
-
|
|
7265
|
-
console.log("answer map: ", answerMap);
|
|
7264
|
+
let answerMap = constructAnswerBasedOnData(selectedType, data);
|
|
7266
7265
|
return /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { children: [
|
|
7267
7266
|
showType ? /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(import_jsx_runtime47.Fragment, { children: [
|
|
7268
7267
|
/* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "mb-4", children: [
|
package/dist/index.mjs
CHANGED
|
@@ -7037,8 +7037,7 @@ var ActivityPreviewByData = ({
|
|
|
7037
7037
|
}, [data, lockedType, typeOptionList, showDifficulty]);
|
|
7038
7038
|
if (!data) return;
|
|
7039
7039
|
if (!selectedType) return;
|
|
7040
|
-
|
|
7041
|
-
console.log("answer map: ", answerMap);
|
|
7040
|
+
let answerMap = constructAnswerBasedOnData(selectedType, data);
|
|
7042
7041
|
return /* @__PURE__ */ jsxs36("div", { children: [
|
|
7043
7042
|
showType ? /* @__PURE__ */ jsxs36(Fragment11, { children: [
|
|
7044
7043
|
/* @__PURE__ */ jsxs36("div", { className: "mb-4", children: [
|
package/package.json
CHANGED
|
@@ -81,8 +81,7 @@ const ActivityPreviewByData = ({
|
|
|
81
81
|
|
|
82
82
|
if (!data) return;
|
|
83
83
|
if (!selectedType) return;
|
|
84
|
-
|
|
85
|
-
console.log("answer map: ", answerMap);
|
|
84
|
+
let answerMap = constructAnswerBasedOnData(selectedType, data);
|
|
86
85
|
|
|
87
86
|
return (
|
|
88
87
|
<div key={key}>
|