Got rid of 2 dead functions

This commit is contained in:
2026-05-15 04:05:02 +00:00
parent b029c0a25d
commit 364ba222e2
2 changed files with 0 additions and 10 deletions
-4
View File
@@ -241,10 +241,6 @@ func (f *form) focusOnly(i int) {
// error inline without closing the form. // error inline without closing the form.
type formSubmitErr string type formSubmitErr string
func submitErr(err error) tea.Cmd {
return func() tea.Msg { return formSubmitErr(err.Error()) }
}
// ============================================================= // =============================================================
// Specific forms. // Specific forms.
// ============================================================= // =============================================================
-6
View File
@@ -73,9 +73,3 @@ func renderState(s string) string {
} }
} }
func renderLive(live bool) string {
if live {
return stateUpStyle.Render("● live")
}
return stateDownStyle.Render("● dead")
}