From 35cdc63ca00abf135aa7eb75e095a3ca305bc5c0 Mon Sep 17 00:00:00 2001 From: Brooklyn Nicholson Date: Wed, 22 Jul 2026 21:32:23 -0500 Subject: [PATCH] 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. --- apps/desktop/src/app/chat/sidebar/session-actions-menu.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/app/chat/sidebar/session-actions-menu.tsx b/apps/desktop/src/app/chat/sidebar/session-actions-menu.tsx index d85f94e5bf33..7b0d1a1e649c 100644 --- a/apps/desktop/src/app/chat/sidebar/session-actions-menu.tsx +++ b/apps/desktop/src/app/chat/sidebar/session-actions-menu.tsx @@ -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')