From ba94853308badcf846d56a5d727552bbc83a582b Mon Sep 17 00:00:00 2001 From: Tatiana Nikolaeva Date: Thu, 15 May 2025 08:09:35 +0500 Subject: [PATCH] fix AnswerOption.tsx --- SurveyFrontend/src/components/AnswerOption/AnswerOption.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/SurveyFrontend/src/components/AnswerOption/AnswerOption.tsx b/SurveyFrontend/src/components/AnswerOption/AnswerOption.tsx index add22fe..639d027 100644 --- a/SurveyFrontend/src/components/AnswerOption/AnswerOption.tsx +++ b/SurveyFrontend/src/components/AnswerOption/AnswerOption.tsx @@ -10,7 +10,6 @@ interface AnswerOptionProps{ onChange: (value: string) => void; onDelete:(index: number) => void; selectedType: 'single' | 'multiply'; - // isSelected: boolean; toggleSelect: () => void; }