remove limit

This commit is contained in:
Dan Anglin 2024-05-19 11:31:44 +01:00
parent 518c7308ab
commit b397a22cfe
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -173,7 +173,7 @@ func (c *showCommand) showList(gts *client.Client) error {
return fmt.Errorf("unable to retrieve the list; %w", err) 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 { if err != nil {
return fmt.Errorf("unable to retrieve the accounts from the list; %w", err) return fmt.Errorf("unable to retrieve the accounts from the list; %w", err)
} }