fix staticcheck S1005: remove unnecessary blank identifier

This commit is contained in:
Username
2026-02-24 09:56:44 +01:00
parent f190e073ba
commit 7ea5814c03

View File

@@ -80,7 +80,7 @@ func (ui *Ui) Active() string {
}
func (ui *Ui) SetActive(name string) {
element, _ := ui.elements[name]
element := ui.elements[name]
if ui.activeElement != nil {
ui.activeElement.View.uiSetActive(false)
}