analytica-frontend-lib 1.1.74 → 1.1.75

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.
@@ -5644,7 +5644,7 @@ var QuizHeader = () => {
5644
5644
  }
5645
5645
  );
5646
5646
  };
5647
- var QuizContent = forwardRef11(({ paddingBottom }) => {
5647
+ var QuizContent = ({ paddingBottom }) => {
5648
5648
  const { getCurrentQuestion } = useQuizStore();
5649
5649
  const currentQuestion = getCurrentQuestion();
5650
5650
  const questionComponents = {
@@ -5658,7 +5658,7 @@ var QuizContent = forwardRef11(({ paddingBottom }) => {
5658
5658
  };
5659
5659
  const QuestionComponent = currentQuestion ? questionComponents[currentQuestion.questionType] : null;
5660
5660
  return QuestionComponent ? /* @__PURE__ */ jsx21(QuestionComponent, { paddingBottom }) : null;
5661
- });
5661
+ };
5662
5662
  var QuizQuestionList = ({
5663
5663
  filterType = "all",
5664
5664
  onQuestionClick