Sentence case 'Other' option in hostname prompt

This commit is contained in:
Tyler McGoffin 2024-09-20 13:55:20 -07:00
parent 46790977bb
commit bc587f6576
2 changed files with 6 additions and 6 deletions

View file

@ -226,7 +226,7 @@ func loginRun(opts *LoginOptions) error {
}
func promptForHostname(opts *LoginOptions) (string, error) {
options := []string{"GitHub.com", "other"}
options := []string{"GitHub.com", "Other"}
hostType, err := opts.Prompter.Select(
"What account do you want to log into?",
options[0],