fix: uppercase for status buffer messages

This commit is contained in:
decentral1se 2023-12-29 10:31:03 +01:00
parent 8eaa4aa480
commit 3eda377ca3
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ func handleCommand(cmd, hiddenInput string) tea.Msg {
return clearScreenMsg{}
default:
return cmdMsg{output: []string{"unknown command"}}
return cmdMsg{output: []string{"Unknown command"}}
}
}