Skip to content

Commit

Permalink
Show only five goals on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
wweitzel committed Dec 1, 2023
1 parent dee55a2 commit caef73c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/api/goals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface GetGoalResponse {

export async function getGoals(pagination?: Pagination, filter?: GetGoalsFilter) {
if (!pagination) {
pagination = {skip: 0, limit: 10};
pagination = {skip: 0, limit: 5};
}

const request: GetGoalsRequest = {pagination, filter};
Expand Down

0 comments on commit caef73c

Please sign in to comment.