From 924425292b20cc34727f2434f8921ed5d18da78e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9F=B3=E6=B8=85=E7=88=BD?= Date: Wed, 23 Apr 2025 17:07:19 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B6=85=E7=AE=A1=E5=90=8E=E5=8F=B0=20-=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=BC=96=E8=BE=91=E9=A1=B9=E7=9B=AE=E9=A1=B5?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98=EF=BC=88password?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E4=BD=BF=E7=94=A8=E4=BD=86=E6=98=AF=E5=8D=B4?= =?UTF-8?q?=E6=9C=AA=E5=AE=9A=E4=B9=89=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SuperAdmin/app/dashboard/projects/[id]/edit/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SuperAdmin/app/dashboard/projects/[id]/edit/page.tsx b/SuperAdmin/app/dashboard/projects/[id]/edit/page.tsx index 388ff7c48..051e2ec76 100644 --- a/SuperAdmin/app/dashboard/projects/[id]/edit/page.tsx +++ b/SuperAdmin/app/dashboard/projects/[id]/edit/page.tsx @@ -35,6 +35,8 @@ export default function EditProjectPage({ params }: { params: { id: string } }) const [isSubmitting, setIsSubmitting] = useState(false) const [isLoading, setIsLoading] = useState(true) const [project, setProject] = useState(null) + const [password, setPassword] = useState("") + const [confirmPassword, setConfirmPassword] = useState("") const { id } = use(params) useEffect(() => {