Skip to content

Commit

Permalink
fix :: 모집의뢰서 추가작성 막기 수정
Browse files Browse the repository at this point in the history
phyuna0525 authored Nov 7, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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
@@ -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",
@@ -57,7 +56,7 @@ export default function Chose() {
onClick={e =>
handleLinkClick(
e,
!checkRecruitment?.winter_intern,
!!checkRecruitment?.winter_intern,
"/recruitments?winter=true"
)
}
@@ -86,7 +85,7 @@ export default function Chose() {
onClick={e =>
handleLinkClick(
e,
!checkRecruitment?.experiential,
!!checkRecruitment?.experiential,
"/recruitments"
)
}

0 comments on commit c4019f9

Please sign in to comment.