From edb7e42891274c2b59bb663c6a8bc98ec607f20b Mon Sep 17 00:00:00 2001 From: Wes Date: Fri, 6 Feb 2026 09:49:36 -0700 Subject: [PATCH] fix: remove extra vertical space in branch card menu when no actions Only show the separator before Delete when there are project actions, preventing unnecessary spacing between View Diff and Delete. --- src/lib/BranchCard.svelte | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lib/BranchCard.svelte b/src/lib/BranchCard.svelte index c5bafc1..8a44513 100644 --- a/src/lib/BranchCard.svelte +++ b/src/lib/BranchCard.svelte @@ -994,7 +994,9 @@ {/if} - + {#if projectActions.length > 0} + + {/if}