From 971da6f48aed5c314a55c4e00cd154cc940660f2 Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Tue, 27 Jan 2026 13:11:13 +0700 Subject: [PATCH] Update files --- packages/app/src/components/git-diff-pane.tsx | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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",