fix QuestionItem.tsx

This commit is contained in:
Tatiana Nikolaeva 2025-05-15 08:13:09 +05:00
parent ba94853308
commit a6b7380e6e

View file

@ -135,7 +135,6 @@ const QuestionItem: React.FC<QuestionItemProps> = ({indexQuestion, initialTextQu
value={answerText}
onChange={(value) => handleAnswerChange(index, value)}
onDelete={() => handleDeleteAnswer(index)}
isSelected={selectedAnswers.includes(index)}
toggleSelect={() => toggleSelect(index)}
/>
))}