Skip to content

Commit

Permalink
chore: 필요없는 주석 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Jieun1ee committed Dec 5, 2024
1 parent 99bdbc9 commit 7a8c8be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/api/src/dashboard/dashboard.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class DashboardService {

const ticles = applicants.map((applicant) => ({
...applicant.ticle,
summary: applicant.ticle.summary ? applicant.ticle.summary.id !== null : false, // summary 필드 안전하게 처리
summary: applicant.ticle.summary ? applicant.ticle.summary.id !== null : false,
}));

const totalPages = Math.ceil(totalItems / pageSize);
Expand Down

0 comments on commit 7a8c8be

Please sign in to comment.