diff --git a/SuperAdmin/app/dashboard/projects/[id]/edit/page.tsx b/SuperAdmin/app/dashboard/projects/[id]/edit/page.tsx index 388ff7c4..051e2ec7 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(() => {