Skip to content

Commit 78d28ec

Browse files
kevinelliottclaude
andcommitted
fix: resolve SA9003 empty branch staticcheck warning
- Explicitly assign error to underscore to indicate intentional no-op - Error is already logged by orchestrator so no additional handling needed 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent caf97f6 commit 78d28ec

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pkg/tui/tui.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,10 @@ func (m Model) startConversation() tea.Cmd {
236236
}()
237237

238238
go func() {
239-
if err := orch.Start(m.ctx); err != nil {
240-
// Error is already logged by orchestrator
239+
err := orch.Start(m.ctx)
240+
if err != nil {
241+
// Error is already logged by orchestrator, nothing to do here
242+
_ = err
241243
}
242244
close(writer.messageChan)
243245
}()

0 commit comments

Comments
 (0)