Improve auto-loop event emission and add ntfy notifications (#821)

This commit is contained in:
gsxdsm
2026-03-01 00:12:22 -08:00
parent 2d5f76a336
commit 76499224dc
53 changed files with 4620 additions and 255 deletions

View File

@@ -248,7 +248,7 @@ export function useWorktreeBranches(worktreePath: string | undefined, includeRem
isGitRepo: true,
hasCommits: true,
trackingRemote: result.result?.trackingRemote,
remotesWithBranch: result.result?.remotesWithBranch,
remotesWithBranch: (result.result as { remotesWithBranch?: string[] })?.remotesWithBranch,
};
},
enabled: !!worktreePath,