fix
All checks were successful
Deploy / CreateImage (push) Successful in 6m0s
Deploy / DeployService (push) Successful in 21s

This commit is contained in:
Nastya 2025-05-29 16:29:22 +03:00
parent 350b28cb6b
commit d66cff65df

@ -155,10 +155,10 @@ const SettingTextField = memo<SettingTextFieldProps>(function ({ questionId, isR
alignItems: isMobile ? "flex-end" : "center",
}}
label={"Многострочный ответ"}
checked={!multi}
checked={multi}
handleChange={(e) => {
updateQuestion<QuizQuestionText>(questionId, (question) => {
question.content.multi = !e.target.checked;
question.content.multi = e.target.checked;
});
}}
/>