Skip to content

Commit

Permalink
fix: remove get projects limit
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunny Guduru authored Apr 30, 2024
1 parent 25b9f2e commit 68d0bf0
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions internal/projects/projects.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ func (c ProjectsClient) List(
) ([]byte, error) {
client := client.New(accessToken, baseURI, c.cliVersion)
projects, _, err := client.ProjectsApi.
GetProjects(ctx).
Limit(2).
Execute()
GetProjects(ctx).Execute()
if err != nil {
return nil, errors.NewLDAPIError(err)
}
Expand Down

0 comments on commit 68d0bf0

Please sign in to comment.