Merge branch 'survey-fixes' into dev

This commit is contained in:
Nastya 2024-01-04 20:12:29 +03:00
commit cefe381484

@ -123,7 +123,7 @@ export default function QuestionsPageCard({
>
<TextField
placeholder={`Заголовок ${questionIndex + 1} вопроса`}
value={question.title}
defaultValue={question.title}
onChange={({ target }) => setTitle(target.value)}
sx={{
width: "100%",
@ -365,8 +365,6 @@ const IconAndrom = (questionType: QuestionType | null) => {
<RatingIcon color="#9A9AAF" sx={{ height: "22px", width: "20px" }} />
);
default:
return (
<AnswerGroup color="#9A9AAF" sx={{ height: "22px", width: "20px" }} />
);
return null;
}
};