Исправление ошибки authFetch при переносе проекта
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 45s

This commit is contained in:
poignatov
2026-01-13 17:00:47 +03:00
parent 441f872f33
commit b8ae0bb17a
3 changed files with 3 additions and 2 deletions

View File

@@ -1 +1 @@
3.10.4
3.10.5

View File

@@ -1,6 +1,6 @@
{
"name": "play-life-web",
"version": "3.10.4",
"version": "3.10.5",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -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)