fix(tui): modal visuals

This commit is contained in:
adamdottv
2025-06-18 15:12:18 -05:00
parent 5944ae2023
commit ac777b77cf
6 changed files with 44 additions and 38 deletions

View File

@@ -83,6 +83,6 @@ type HelpDialog interface {
func NewHelpDialog(commands []commands.Command) HelpDialog {
return &helpDialog{
commands: commands,
modal: modal.New(),
modal: modal.New(modal.WithTitle("Help")),
}
}