1 Commits

Author SHA1 Message Date
73c2826273 Don't add an extra line when offering a "quit" prompt. 2024-09-29 12:59:21 -07:00

View File

@ -200,7 +200,7 @@ func lightDivider() {
func confirmQuit() {
divider()
fmt.Println("Are you sure you want to quit? (Y/N) > ")
fmt.Printf("Are you sure you want to quit? (Y/N) > ")
s := getResponse()
if s == "y" || s == "yes" {
fmt.Println("Bye!")