Fix feature deep link with project path handling (#834)

* Changes from fix/feature-deeplink-worktree

* Update apps/ui/src/components/views/board-view.tsx

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

---------

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
gsxdsm
2026-03-04 10:13:24 -08:00
committed by GitHub
parent 20e7c74b17
commit 26b73df097
8 changed files with 297 additions and 41 deletions

View File

@@ -136,8 +136,14 @@ export function RecentActivityFeed({ activities, maxItems = 10 }: RecentActivity
upsertAndSetCurrentProject(projectPath, projectName);
if (activity.featureId) {
// Navigate to the specific feature
navigate({ to: '/board', search: { featureId: activity.featureId } });
// Navigate to the specific feature with project path for deep link handling
navigate({
to: '/board',
search: {
featureId: activity.featureId,
projectPath: projectPath || undefined,
},
});
} else {
navigate({ to: '/board' });
}