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)