From b397a22cfe3740d63ad015d2ca74762260dcec4c Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Sun, 19 May 2024 11:31:44 +0100 Subject: [PATCH] remove limit --- cmd/enbas/show.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/enbas/show.go b/cmd/enbas/show.go index eaf5dd3..8d21d92 100644 --- a/cmd/enbas/show.go +++ b/cmd/enbas/show.go @@ -173,7 +173,7 @@ func (c *showCommand) showList(gts *client.Client) error { return fmt.Errorf("unable to retrieve the list; %w", err) } - accounts, err := gts.GetAccountsFromList(c.listID, 40) + accounts, err := gts.GetAccountsFromList(c.listID, 0) if err != nil { return fmt.Errorf("unable to retrieve the accounts from the list; %w", err) }