Skip to content

Commit 9e457b6

Browse files
committed
remove unused field
1 parent a0b7769 commit 9e457b6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/cmd/ls/ls.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ func (ls Ls) displayWorkspacesAndHelp(org *entity.Organization, otherOrgs []enti
319319
}
320320
} else {
321321
ls.terminal.Vprintf("You have %d instances in Org "+ls.terminal.Yellow(org.Name)+"\n", len(userWorkspaces))
322-
displayWorkspacesTable(ls.terminal, userWorkspaces, userID)
322+
displayWorkspacesTable(ls.terminal, userWorkspaces)
323323

324324
fmt.Print("\n")
325325

@@ -405,7 +405,7 @@ func getBrevTableOptions() table.Options {
405405
return options
406406
}
407407

408-
func displayWorkspacesTable(t *terminal.Terminal, workspaces []entity.Workspace, userID string) {
408+
func displayWorkspacesTable(t *terminal.Terminal, workspaces []entity.Workspace) {
409409
ta := table.NewWriter()
410410
ta.SetOutputMirror(os.Stdout)
411411
ta.Style().Options = getBrevTableOptions()

0 commit comments

Comments
 (0)