diff --git a/src/renderer/App.tsx b/src/renderer/App.tsx index 2add99a..67ac481 100644 --- a/src/renderer/App.tsx +++ b/src/renderer/App.tsx @@ -10233,6 +10233,11 @@ function ActionBar({ : undefined; const publishInsteadOfPush = shouldPublishInsteadOfPush(summary); const pushableCommitCount = getPushableCommitCount(summary); + const pushVariant = runningAction === "push" + ? "secondary" + : publishInsteadOfPush || pushableCommitCount > 0 + ? "default" + : "outline"; const pushAriaLabel = publishInsteadOfPush ? "Publish branch" : pushableCommitCount > 0 @@ -10378,7 +10383,7 @@ function ActionBar({