fix question type

This commit is contained in:
nflnkr 2023-10-14 16:22:38 +03:00
parent 12c2446edf
commit 7bec46efcc

@ -84,7 +84,7 @@ export default function QuestionsPageCard({
const [open, setOpen] = useState<boolean>(false);
const quizId = Number(useParams().quizId);
const { listQuestions } = questionStore();
const question = listQuestions[quizId][totalIndex] as QuizQuestionBase;
const question = listQuestions[quizId][totalIndex];
const anchorRef = useRef(null);
const debounced = useDebouncedCallback((title) => {
updateQuestionsList<QuizQuestionBase>(quizId, totalIndex, { title });
@ -156,7 +156,7 @@ export default function QuestionsPageCard({
),
}}
/>
{question.type.length === 0 ? (
{question.type === "nonselected" ? (
<FormTypeQuestions totalIndex={totalIndex} />
) : (
<SwitchQuestionsPage totalIndex={totalIndex} />