Skip to content

Commit

Permalink
chore :: 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Nov 3, 2023
1 parent a4c61ea commit e3f48b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/recruitments/RecruitmentsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ function RecruitmentsTable({ ...rest }: RecruitmentsDetailTable) {
<tr>
<td className="key">필수자격증</td>
<td className="value">
{required_licenses[0] ? required_licenses.join(", ") : "-"}
{!!required_licenses.length ? required_licenses.join(", ") : "-"}
</td>
</tr>
<tr>
Expand Down

0 comments on commit e3f48b0

Please sign in to comment.