From bcaa70216f0db523155780cce06fafcd3a06cd03 Mon Sep 17 00:00:00 2001 From: mattv8 Date: Thu, 27 Aug 2026 14:59:48 -0600 Subject: [PATCH] fix(sessions): restore worktree menu type wiring --- .../session/sidebar/list/SessionProjectCollection.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/ui/src/components/session/sidebar/list/SessionProjectCollection.tsx b/packages/ui/src/components/session/sidebar/list/SessionProjectCollection.tsx index 4bd79c52..1e37bfc0 100644 --- a/packages/ui/src/components/session/sidebar/list/SessionProjectCollection.tsx +++ b/packages/ui/src/components/session/sidebar/list/SessionProjectCollection.tsx @@ -6,6 +6,7 @@ import { useUIStore } from '@/stores/useUIStore'; import { useGitHubAuthStore } from '@/stores/useGitHubAuthStore'; import { getGitHubPrStatusKey, useGitHubPrStatusStore } from '@/stores/useGitHubPrStatusStore'; import { useRuntimeAPIs } from '@/hooks/useRuntimeAPIs'; +import type { SessionTreeItemProps } from '../sessions/SessionTreeItem'; import { useArchivedAutoFolders } from '../folders/useArchivedAutoFolders'; import { ProjectSessionSelectionEffect } from '../projects/useProjectSessionSelection'; import type { WorktreeMetadata } from '@/types/worktree'; @@ -467,6 +468,7 @@ const VisibleSessionProjects: React.FC = ({ topol showRecentSection={showRecentSection && !singleProjectMode} /> : null ), [ + actions.startSessionWorktreeMenuLoad, alwaysShowActions, collection.childrenMap, collection.pinnedSessionIds,