(projectPath: string, sectionId: string)
| 990 | ); |
| 991 | |
| 992 | const toggleSection = (projectPath: string, sectionId: string) => { |
| 993 | const key = getSectionExpandedKey(projectPath, sectionId); |
| 994 | setExpandedSections((prev) => ({ |
| 995 | ...prev, |
| 996 | [key]: !prev[key], |
| 997 | })); |
| 998 | }; |
| 999 | |
| 1000 | const handleForkWorkspace = useCallback( |
| 1001 | async (workspaceId: string, buttonElement?: HTMLElement) => { |
no test coverage detected