From 8b8307cc57562d2a7aa75ad2f273d839da642724 Mon Sep 17 00:00:00 2001 From: Sam Fredrickson Date: Tue, 19 Mar 2024 21:55:27 -0700 Subject: [PATCH] How about actually use the goal name? --- tui/tui.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui/tui.go b/tui/tui.go index a21c107..49bdac5 100644 --- a/tui/tui.go +++ b/tui/tui.go @@ -56,7 +56,7 @@ func New(cfg config.Data) Model { projectionRows[0][0] = "Starting" projectionRows[1][0] = "CDPR" for i := range math.Goals { - projectionRows[i+2][0] = fmt.Sprintf("$%.0f", math.Goals[i].Value) + projectionRows[i+2][0] = math.Goals[i].Name } projections := table.New( table.WithColumns(projectionCols),