touchstudy-core 0.1.185 → 0.1.186

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.
@@ -12381,7 +12381,7 @@ var isSequentialQuestionGroups = function isSequentialQuestionGroups(questionGro
12381
12381
  };
12382
12382
  var getQuestionGroupsAfterQuestionCountChanged = function getQuestionGroupsAfterQuestionCountChanged(questionGroups, questionCount, index, checkSequential) {
12383
12383
  var currentQuestionGroup = questionGroups[index];
12384
- if (currentQuestionGroup.questionCount === questionCount) return;
12384
+ if (currentQuestionGroup.questionCount === questionCount) return questionGroups;
12385
12385
  var prevQuestionGroups = index === 0 ? [] : questionGroups.slice(0, index);
12386
12386
  var nextQuestionGroups = index === questionGroups.length - 1 ? [] : questionGroups.slice(index + 1);
12387
12387
  var questions = currentQuestionGroup.questions;
@@ -15616,7 +15616,7 @@ var LessonTooltip = function LessonTooltip(_ref) {
15616
15616
  fontSize: "14px",
15617
15617
  fontWeight: "600"
15618
15618
  }
15619
- }, t("" + moment(lesson === null || lesson === void 0 ? void 0 : lesson.date).format(t("date_format"))))), React__default.createElement(Stack, {
15619
+ }, utcToLocalTime(lesson === null || lesson === void 0 ? void 0 : lesson.date, t("date_format")))), React__default.createElement(Stack, {
15620
15620
  display: "flex",
15621
15621
  flexDirection: "row",
15622
15622
  justifyContent: "space-between",