fix: Address code review comments

This commit is contained in:
gsxdsm
2026-02-17 23:04:42 -08:00
parent 43c19c70ca
commit dd4c738e91
43 changed files with 1128 additions and 359 deletions

View File

@@ -243,7 +243,7 @@ export function createWorktreeRoutes(
'/cherry-pick',
validatePathParams('worktreePath'),
requireValidWorktree,
createCherryPickHandler()
createCherryPickHandler(events)
);
// Generate PR description route
@@ -259,7 +259,7 @@ export function createWorktreeRoutes(
'/branch-commit-log',
validatePathParams('worktreePath'),
requireValidWorktree,
createBranchCommitLogHandler()
createBranchCommitLogHandler(events)
);
return router;