From e1bb29d51ada1e9ac677065a4c514d6125eebb80 Mon Sep 17 00:00:00 2001 From: Nastya Date: Tue, 26 Aug 2025 16:33:37 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BA=D0=BE=D1=81=D1=82=D1=8B=D0=BB=D1=8C=20?= =?UTF-8?q?=D1=81=20=D1=81=D0=BF=D0=B0=D1=81=D0=B8=D0=B1=D0=BE=20=D0=BF?= =?UTF-8?q?=D0=B5=D1=80=D0=B5=D0=B4=D0=B5=D0=BB=D0=B0=D0=BD=20=D0=BD=D0=B0?= =?UTF-8?q?=20=D0=B4=D0=B0=D0=BB=D0=B5=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/components/ViewPublicationPage/PointSystemResultList.tsx | 2 +- lib/components/ViewPublicationPage/ResultForm.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) => {