diff options
Diffstat (limited to 'hotline/ui.go')
| -rw-r--r-- | hotline/ui.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hotline/ui.go b/hotline/ui.go index 168bf3a..b9e45dd 100644 --- a/hotline/ui.go +++ b/hotline/ui.go @@ -2,7 +2,6 @@ package hotline import ( "fmt" - "github.com/davecgh/go-spew/spew" "github.com/gdamore/tcell/v2" "github.com/rivo/tview" "gopkg.in/yaml.v3" @@ -108,7 +107,7 @@ func (ui *UI) showBookmarks() *tview.List { func (ui *UI) getTrackerList() *tview.List { listing, err := GetListing(ui.HLClient.pref.Tracker) if err != nil { - spew.Dump(err) + // TODO } list := tview.NewList() |