Skip to content

Commit 338bf1d

Browse files
Yuki Osakisamcoe
authored andcommitted
fix linter issue
1 parent 8ef2bb4 commit 338bf1d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cmd/issue/comment/comment.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ func titleBodySurvey(editorCommand string, issueState *CommentOptions, apiClient
9595

9696
err := prompt.SurveyAsk(qs, issueState)
9797
if err != nil {
98-
panic(fmt.Sprintf("could not prompt: %w", err))
98+
panic(fmt.Sprintf("could not prompt: %v", err))
9999
}
100100

101101
confirmA, err := confirmSubmission()
102102

103103
if err != nil {
104-
panic(fmt.Sprintf("unable to confirm: %w", err))
104+
panic(fmt.Sprintf("unable to confirm: %v", err))
105105
}
106106

107107
issueState.Action = confirmA

0 commit comments

Comments
 (0)