Skip to content

Commit 114f9c1

Browse files
fix: fix for default flag values
1 parent 99caa6a commit 114f9c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/projectbranch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ var projectsBranchesRebase = cli.Command{
108108
Name: "base",
109109
Usage: `The branch or commit SHA to rebase onto. Defaults to "main".`,
110110
Value: requestflag.Value[string]("main"),
111-
DefaultText: "main",
111+
DefaultText: requestflag.Value[string]("main"),
112112
Config: requestflag.RequestConfig{
113113
QueryPath: "base",
114114
},

0 commit comments

Comments
 (0)