Skip to content

Commit

Permalink
Merge pull request #259 from modern-agile-team/modify/myRecord_list/#250
Browse files Browse the repository at this point in the history


마이페이지 기록 페이지 수정
  • Loading branch information
zzzRYT authored Mar 28, 2024
2 parents 50d464a + a4776cb commit 0aa0e8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/apis/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const HELP = {
sortOrder: params.sortOrder,
pageSize: params.pageSize,
page: params.page,
userId: params.userId && params.userId,
},
});
return result.data.contents;
Expand Down
2 changes: 1 addition & 1 deletion src/apis/mentor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const MENTOR = {
loadOnlyPopular: params.loadOnlyPopular,
orderField: params.orderField,
sortOrder: params.sortOrder,
userId: params.userId ? params.userId : undefined,
userId: params.userId && params.userId,
},
});
return result.data.contents;
Expand Down

0 comments on commit 0aa0e8c

Please sign in to comment.