summaryrefslogtreecommitdiff
path: root/internal/hexaiaction/tui_delegate.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-11-02 23:42:15 +0200
committerPaul Buetow <paul@buetow.org>2025-11-02 23:42:15 +0200
commit35e1de6f975088ade5dbf0af533fe6fdac8fcc94 (patch)
treec9fc9b6ad86cc10a777b3f510c3c4b2d62c41ebd /internal/hexaiaction/tui_delegate.go
parentc60d5703d25b7d76d1da2f368b0632f08a161644 (diff)
some linter fixes
Diffstat (limited to 'internal/hexaiaction/tui_delegate.go')
-rw-r--r--internal/hexaiaction/tui_delegate.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/hexaiaction/tui_delegate.go b/internal/hexaiaction/tui_delegate.go
index 46d40cb..0b34d7e 100644
--- a/internal/hexaiaction/tui_delegate.go
+++ b/internal/hexaiaction/tui_delegate.go
@@ -31,5 +31,5 @@ func (oneLineDelegate) Render(w io.Writer, m list.Model, index int, listItem lis
if index == m.Index() {
cursor = cursorStyle.Render("> ")
}
- fmt.Fprintf(w, "%s%s%s", cursor, title, hot)
+ _, _ = fmt.Fprintf(w, "%s%s%s", cursor, title, hot)
}