From b8ae0bb17afca674d023dff9b64ccf1a6b011778 Mon Sep 17 00:00:00 2001 From: poignatov Date: Tue, 13 Jan 2026 17:00:47 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B8?= =?UTF-8?q?=20authFetch=20=D0=BF=D1=80=D0=B8=20=D0=BF=D0=B5=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BE=D1=81=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82?= =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- VERSION | 2 +- play-life-web/package.json | 2 +- play-life-web/src/components/ProjectPriorityManager.jsx | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 8d7f852..c84ccce 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.10.4 +3.10.5 diff --git a/play-life-web/package.json b/play-life-web/package.json index 41d8059..2162936 100644 --- a/play-life-web/package.json +++ b/play-life-web/package.json @@ -1,6 +1,6 @@ { "name": "play-life-web", - "version": "3.10.4", + "version": "3.10.5", "type": "module", "scripts": { "dev": "vite", diff --git a/play-life-web/src/components/ProjectPriorityManager.jsx b/play-life-web/src/components/ProjectPriorityManager.jsx index e0931bf..01c1f6f 100644 --- a/play-life-web/src/components/ProjectPriorityManager.jsx +++ b/play-life-web/src/components/ProjectPriorityManager.jsx @@ -131,6 +131,7 @@ function AddProjectScreen({ onClose, onSuccess, onError }) { // Компонент экрана переноса проекта function MoveProjectScreen({ project, allProjects, onClose, onSuccess, onError }) { + const { authFetch } = useAuth() const [newProjectName, setNewProjectName] = useState('') const [isSubmitting, setIsSubmitting] = useState(false) const [validationError, setValidationError] = useState(null)