Skip to content

Commit

Permalink
Increase max projects fetched from default 20 to 100 (#824)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaunanoordin authored Apr 2, 2024
1 parent 5a647ea commit 8f92796
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ducks/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ function fetchProjects() {
type: FETCH_PROJECTS
});
const query = {
current_user_roles: ALLOWED_ROLES
current_user_roles: ALLOWED_ROLES,
page_size: 100
};
apiClient.type('projects').get(query)
.then((projects) => {
Expand Down

0 comments on commit 8f92796

Please sign in to comment.