Remove unused functions.

This commit is contained in:
2025-12-02 18:18:45 +00:00
parent 8445e50dc8
commit 90e0375a83
2 changed files with 0 additions and 10 deletions
-5
View File
@@ -146,11 +146,6 @@ func StatusText(enabled bool, pending bool, hasError bool) string {
return disabledStyle.Render("○ Disabled")
}
// HelpItem formats a help item.
func HelpItem(key, desc string) string {
return helpKeyStyle.Render(key) + " " + helpDescStyle.Render(desc)
}
// WrapHelpText wraps help text to fit within maxWidth, splitting on bullet separators.
// If maxWidth is 0 or negative, returns the original text.
func WrapHelpText(text string, maxWidth int) string {