From 72dd37f1abb2b550aaaac48eac677403d5664797 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Tue, 10 Aug 2021 18:52:46 -0700 Subject: Add tests and clean up --- hotline/ui.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'hotline/ui.go') diff --git a/hotline/ui.go b/hotline/ui.go index 3d0fa68..d0fd6c0 100644 --- a/hotline/ui.go +++ b/hotline/ui.go @@ -19,7 +19,6 @@ type UI struct { App *tview.Application Pages *tview.Pages userList *tview.TextView - agreeModal *tview.Modal trackerList *tview.List HLClient *Client } @@ -75,7 +74,6 @@ func NewUI(c *Client) *UI { chatInput: chatInput, userList: userList, trackerList: tview.NewList(), - agreeModal: tview.NewModal(), HLClient: c, } } -- cgit