Skip to content

Commit

Permalink
[FIX] #2 - 취업교육리스트 페이지당 default=11 로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
charBS0701 committed Jul 31, 2023
1 parent 998c592 commit 6f8b286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/JobEdu/jobEduController.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const { response, errResponse } = require("../../../config/response");
export const getJobEduList = async (req, res) => {
try {
const page = req.query.page || 1;
const pageSize = req.query.pageSize || 10;
const pageSize = req.query.pageSize || 11;
const active_status = req.query.active_status;

const jobEduListResult = await jobEduProvider.retrieveJobEduList(
Expand Down

0 comments on commit 6f8b286

Please sign in to comment.