fix(desktop): use repo-forked codicon (git-fork has no glyph)

The bundled @vscode/codicons font has no `git-fork` glyph (only
`git-fork-private`), so the Branch menu item rendered blank. Use
`repo-forked`, the actual fork icon, to match the inline GitFork action.
This commit is contained in:
Brooklyn Nicholson 2026-07-22 21:32:23 -05:00
parent a0a24ba215
commit 35cdc63ca0

View file

@ -273,8 +273,10 @@ function useSessionActions({
const workItems: ItemSpec[] = [
spec({
disabled: !onBranch,
// Match the inline message action's GitFork icon (assistant-message.tsx).
icon: 'git-fork',
// Fork glyph to match the inline message action's GitFork icon
// (assistant-message.tsx). NB: this codicon font has no `git-fork`
// glyph (only `git-fork-private`); `repo-forked` is the fork icon.
icon: 'repo-forked',
label: r.branchFrom,
onSelect: () => {
triggerHaptic('selection')