Skip to content

Commit

Permalink
Fix: 카테고리 별 영상 5개만 불러오던 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunaeri committed Nov 15, 2024
1 parent f88c7a0 commit bc91e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/main/apis/fetchShortsList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const fetchShortsByCategory = async (
params: {
categoryId: params.categoryId,
page: params.page ?? 0,
size: params.size ?? 5,
size: params.size ?? 100,
},
});

Expand Down

0 comments on commit bc91e97

Please sign in to comment.