Skip to content

Commit f697a9a

Browse files
authored
Merge pull request #539 from rumpl/remove-log
Remove useless debug log in the todo component
2 parents 42fa2e1 + b528ba1 commit f697a9a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pkg/tui/components/todo/todo.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package todo
33
import (
44
"encoding/json"
55
"fmt"
6-
"log/slog"
76
"strings"
87

98
"github.com/charmbracelet/lipgloss/v2"
@@ -94,7 +93,6 @@ func (c *Component) SetTodos(toolCall tools.ToolCall) error {
9493
// Render renders the todo component
9594
func (c *Component) Render() string {
9695
if len(c.todos) == 0 {
97-
slog.Debug("No todos to render")
9896
return ""
9997
}
10098

0 commit comments

Comments
 (0)