fix linter issue
This commit is contained in:
parent
8ef2bb4d14
commit
338bf1d112
1 changed files with 2 additions and 2 deletions
|
|
@ -95,13 +95,13 @@ func titleBodySurvey(editorCommand string, issueState *CommentOptions, apiClient
|
|||
|
||||
err := prompt.SurveyAsk(qs, issueState)
|
||||
if err != nil {
|
||||
panic(fmt.Sprintf("could not prompt: %w", err))
|
||||
panic(fmt.Sprintf("could not prompt: %v", err))
|
||||
}
|
||||
|
||||
confirmA, err := confirmSubmission()
|
||||
|
||||
if err != nil {
|
||||
panic(fmt.Sprintf("unable to confirm: %w", err))
|
||||
panic(fmt.Sprintf("unable to confirm: %v", err))
|
||||
}
|
||||
|
||||
issueState.Action = confirmA
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue