Skip to content

Commit 0e773f9

Browse files
authored
Fix pr_merge_main() (#2026)
1 parent 1f73587 commit 0e773f9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

R/utils-git.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,7 @@ git_conflict_report <- function() {
229229
no <- "No, I want to abort this merge."
230230
choice <- utils::menu(
231231
title = "Do you want to proceed with this merge?",
232-
choices = c(yes, yes_soft, no),
233-
title = msg
232+
choices = c(yes, yes_soft, no)
234233
)
235234

236235
if (choice < 1 || choice > 2) {

0 commit comments

Comments
 (0)