diff --git a/frontend/src/components/tasks/Toolbar/GitOperations.tsx b/frontend/src/components/tasks/Toolbar/GitOperations.tsx index 1875b190..b0da6786 100644 --- a/frontend/src/components/tasks/Toolbar/GitOperations.tsx +++ b/frontend/src/components/tasks/Toolbar/GitOperations.tsx @@ -430,7 +430,6 @@ function GitOperations({ mergeInfo.hasOpenPR || merging || hasConflictsCalculated || - Boolean((branchStatus.commits_behind ?? 0) > 0) || isAttemptRunning || ((branchStatus.commits_ahead ?? 0) === 0 && !pushSuccess && @@ -449,7 +448,6 @@ function GitOperations({ onClick={handlePRButtonClick} disabled={ pushing || - Boolean((branchStatus.commits_behind ?? 0) > 0) || isAttemptRunning || hasConflictsCalculated || (mergeInfo.hasOpenPR && @@ -470,12 +468,7 @@ function GitOperations({