From ee2a37876ed364c04f090c3c63c33230039179f5 Mon Sep 17 00:00:00 2001 From: lanrtop Date: Fri, 19 Jun 2026 13:07:09 +0900 Subject: [PATCH] =?UTF-8?q?fix(dashboard):=20=E7=A7=BB=E9=99=A4=20ProjectC?= =?UTF-8?q?ard=20=E6=9C=AA=E4=BD=BF=E7=94=A8=E7=9A=84=20role=20=E8=A7=A3?= =?UTF-8?q?=E6=9E=84=EF=BC=88typecheck=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/dashboard/ProjectCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dashboard/ProjectCard.tsx b/src/components/dashboard/ProjectCard.tsx index 7892e25..0f53354 100644 --- a/src/components/dashboard/ProjectCard.tsx +++ b/src/components/dashboard/ProjectCard.tsx @@ -60,7 +60,7 @@ interface Props { spacesJson?: SpacesJson | null; } -export function ProjectCard({ project: p, role, spacesJson }: Props) { +export function ProjectCard({ project: p, spacesJson }: Props) { const [expanded, setExpanded] = useState(false); const [showToolsMgr, setShowToolsMgr] = useState(false); const [toolsMgrDefaultAdd, setToolsMgrDefaultAdd] = useState(false);