fix(dashboard): 移除 ProjectCard 未使用的 role 解构(typecheck)

This commit is contained in:
lanrtop 2026-06-19 13:07:09 +09:00
parent 5f8b2e8bec
commit ee2a37876e

View File

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