remove развёрнутый ответ
All checks were successful
Deploy / CreateImage (push) Successful in 7m17s
Deploy / DeployService (push) Successful in 22s

This commit is contained in:
Nastya 2025-05-29 08:42:03 +03:00
parent ab1e221ada
commit 350b28cb6b

@ -147,21 +147,6 @@ const SettingTextField = memo<SettingTextFieldProps>(function ({ questionId, isR
});
}}
/>
<CustomCheckbox
dataCy="checkbox-optional-question"
sx={{
display: isMobile ? "flex" : "block",
mr: isMobile ? "0px" : "16px",
alignItems: isMobile ? "flex-end" : "center",
}}
label={"Развёрнутый ответ"}
checked={!detailedAnswer}
handleChange={(e) => {
updateQuestion<QuizQuestionText>(questionId, (question) => {
question.content.detailedAnswer = !e.target.checked;
});
}}
/>
<CustomCheckbox
dataCy="checkbox-optional-question"
sx={{