From dac2ba407831160f419f8d2f0e68767aa342bab6 Mon Sep 17 00:00:00 2001 From: Primakov Alexandr Date: Sat, 13 Dec 2025 19:28:55 +0300 Subject: [PATCH] Update task progress display in MainPage component to remove total task count from the string. This simplifies the information presented to the user while maintaining clarity on the current task index. --- src/pages/main/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/main/main.tsx b/src/pages/main/main.tsx index d43eea8..99a6e61 100644 --- a/src/pages/main/main.tsx +++ b/src/pages/main/main.tsx @@ -165,7 +165,7 @@ export const MainPage = () => { ) } - const taskProgress = `Задание ${selectedChain.tasks.findIndex(t => t.id === selectedTask?.id) + 1} из ${selectedChain.tasks.length}` + const taskProgress = `Задание ${selectedChain.tasks.findIndex(t => t.id === selectedTask?.id) + 1}` // из ${selectedChain.tasks.length}` // Показываем выбранную цепочку и задания return (