Skip to content

Commit

Permalink
delete quit hint when waiting (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
xuanyu66 committed Nov 30, 2022
1 parent 665ab09 commit 4bfe764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ui/spinner_model.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func (m SpinnerModel) View() string {
if m.Output != "" {
return m.Output
}
str := color.New(color.FgYellow).Sprintf("%s %s. press q to quit \n", m.spinner.View(), m.Hint)
str := color.New(color.FgYellow).Sprintf("%s %s.\n", m.spinner.View(), m.Hint)
if m.quitting {
return str + "\n"
}
Expand Down

0 comments on commit 4bfe764

Please sign in to comment.