diff --git a/packages/app/src/components/git-diff-pane.tsx b/packages/app/src/components/git-diff-pane.tsx
index 3afdc46b0..9f04a8194 100644
--- a/packages/app/src/components/git-diff-pane.tsx
+++ b/packages/app/src/components/git-diff-pane.tsx
@@ -846,7 +846,7 @@ export function GitDiffPane({ serverId, agentId, cwd }: GitDiffPaneProps) {
accessibilityLabel="Commit changes"
>
{commitMutation.isPending ? (
-
+
) : (
Commit
)}
@@ -941,7 +941,7 @@ export function GitDiffPane({ serverId, agentId, cwd }: GitDiffPaneProps) {
accessibilityLabel="Ship changes"
>
{shipPrimaryPending ? (
-
+
) : (
{resolvedShipPrimary === "merge" ? "Merge branch" : prActionLabel}
@@ -1151,9 +1151,14 @@ const styles = StyleSheet.create((theme) => ({
},
shipPrimaryText: {
fontSize: theme.fontSize.xs,
+ lineHeight: theme.fontSize.xs * 1.5,
color: theme.colors.foreground,
fontWeight: theme.fontWeight.medium,
},
+ shipPrimarySpinner: {
+ height: theme.fontSize.xs * 1.5,
+ width: theme.fontSize.xs * 1.5,
+ },
shipCaretButton: {
width: 36,
alignItems: "center",