Skip to content

Commit

Permalink
fix ci suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
theredditbandit committed May 22, 2024
1 parent 9f34e35 commit 96e8a3b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/ui/statusTable.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ func RenderTable(data map[string]string, refreshLastEditedTime bool) error {
return valI > valJ
})

cleanUp := func(table [][]string) [][]string { // cleanUp func removes the unix timestamp col from the tabledata
result := make([][]string, len(table))
for i, inner := range table {
cleanUp := func(tbl [][]string) [][]string { // cleanUp func removes the unix timestamp col from the tabledata
result := make([][]string, len(tbl))
for i, inner := range tbl {
n := len(inner)
result[i] = inner[:n-1]
}
Expand Down

0 comments on commit 96e8a3b

Please sign in to comment.