diff --git a/src/app/(pages)/(workform)/apply/[formId]/page.tsx b/src/app/(pages)/(workform)/apply/[formId]/page.tsx index 4d284a18..ca4787ee 100644 --- a/src/app/(pages)/(workform)/apply/[formId]/page.tsx +++ b/src/app/(pages)/(workform)/apply/[formId]/page.tsx @@ -102,7 +102,7 @@ export default function Apply() { "absolute -bottom-[26px] right-1 text-[13px] text-sm font-medium leading-[22px] text-state-error lg:text-base lg:leading-[26px]"; return ( -
mutation.mutate())}> + mutation.mutate())}> - - }> - 지원하기 +
+
+ + }> + 지원하기 + + + } + onClick={() => + openModal("verifyMyApplication", { + formId, + isOpen: true, + onVerify: handleVerifySuccess, + }) + } + > + 내 지원내역 조회 - - } - onClick={() => - openModal("verifyMyApplication", { - formId, - isOpen: true, - onVerify: handleVerifySuccess, - }) - } - > - 내 지원내역 조회 - +
); } @@ -106,7 +109,7 @@ export default function FormActions({ formId, albaFormDetailData }: FormActionsP if (isOwnerRole) { if (!isMyAlbaForm) return null; return ( -
+
} disabled={isLoading}> {isLoading ? : "수정하기"} @@ -127,7 +130,7 @@ export default function FormActions({ formId, albaFormDetailData }: FormActionsP // 사장님이 아니면 지원하기/내 지원내역 보기 버튼 return ( -
+
{isApplicationLoading ? ( <> diff --git a/src/app/clientLayout.tsx b/src/app/clientLayout.tsx index e5e6e0ce..172c6df5 100644 --- a/src/app/clientLayout.tsx +++ b/src/app/clientLayout.tsx @@ -37,10 +37,12 @@ export default function ClientLayout({ children }: { children: React.ReactNode } const excludePaths = ["/login", "/signup", "/auth/callback"]; const showChannelTalk = !excludePaths.some((path) => pathname.startsWith(path)); const isHome = pathname === "/"; - + const isLogin = pathname === "/login"; + const isSignupA = pathname === "/signup/applicant"; + const isSignupO = pathname === "/signup/owner"; return ( -
+
{children} { return (