diff --git a/lib/components/ViewPublicationPage/PointSystemResultList.tsx b/lib/components/ViewPublicationPage/PointSystemResultList.tsx index 1bd6bdd..de10279 100644 --- a/lib/components/ViewPublicationPage/PointSystemResultList.tsx +++ b/lib/components/ViewPublicationPage/PointSystemResultList.tsx @@ -20,7 +20,7 @@ const isThankYouQuestion = (question: QuizQuestionVariant): boolean => { const answerText = variant.answer.toLowerCase().trim(); // Проверяем точное совпадение со словом "спасибо" - return answerText === "спасибо"; + return answerText === "далее"; }; export const PointSystemResultList = () => { diff --git a/lib/components/ViewPublicationPage/ResultForm.tsx b/lib/components/ViewPublicationPage/ResultForm.tsx index 06b2da2..c77d275 100644 --- a/lib/components/ViewPublicationPage/ResultForm.tsx +++ b/lib/components/ViewPublicationPage/ResultForm.tsx @@ -39,7 +39,7 @@ const isThankYouQuestion = (question: QuizQuestionVariant): boolean => { const answerText = variant.answer.toLowerCase().trim(); // Проверяем точное совпадение со словом "спасибо" - return answerText === "спасибо"; + return answerText === "далее"; }; export const ResultForm = ({ resultQuestion }: ResultFormProps) => {