Skip to content

Commit

Permalink
fix :: 모집의뢰서 추가작성 막기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
phyuna0525 authored Nov 7, 2024
2 parents 8395d3e + 2fd2454 commit c4019f9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/company/src/app/recruitments/chose/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export default function Chose() {
const { data: checkRecruitment } = useCheckRecruitment();

const CheckToast = (winterIntern: string) => {
console.log(winterIntern?.slice(-4));
return toast({
payload: {
type: "error",
Expand Down Expand Up @@ -57,7 +56,7 @@ export default function Chose() {
onClick={e =>
handleLinkClick(
e,
!checkRecruitment?.winter_intern,
!!checkRecruitment?.winter_intern,
"/recruitments?winter=true"
)
}
Expand Down Expand Up @@ -86,7 +85,7 @@ export default function Chose() {
onClick={e =>
handleLinkClick(
e,
!checkRecruitment?.experiential,
!!checkRecruitment?.experiential,
"/recruitments"
)
}
Expand Down

0 comments on commit c4019f9

Please sign in to comment.