Skip to content

Commit c4019f9

Browse files
authored
fix :: 모집의뢰서 추가작성 막기 수정
2 parents 8395d3e + 2fd2454 commit c4019f9

File tree

1 file changed

+2
-3
lines changed
  • apps/company/src/app/recruitments/chose

1 file changed

+2
-3
lines changed

apps/company/src/app/recruitments/chose/page.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export default function Chose() {
1212
const { data: checkRecruitment } = useCheckRecruitment();
1313

1414
const CheckToast = (winterIntern: string) => {
15-
console.log(winterIntern?.slice(-4));
1615
return toast({
1716
payload: {
1817
type: "error",
@@ -57,7 +56,7 @@ export default function Chose() {
5756
onClick={e =>
5857
handleLinkClick(
5958
e,
60-
!checkRecruitment?.winter_intern,
59+
!!checkRecruitment?.winter_intern,
6160
"/recruitments?winter=true"
6261
)
6362
}
@@ -86,7 +85,7 @@ export default function Chose() {
8685
onClick={e =>
8786
handleLinkClick(
8887
e,
89-
!checkRecruitment?.experiential,
88+
!!checkRecruitment?.experiential,
9089
"/recruitments"
9190
)
9291
}

0 commit comments

Comments
 (0)