Skip to content

Commit

Permalink
[FIX] NonRecruit.js 로그 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiyoongrace committed Mar 24, 2024
1 parent 3cf36a2 commit 75b3e28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Recruitment/Recruit/NonRecruit.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ const NonRecruit = () => {
}

try {
console.log("Sending email data:", { emailAdd: email });
// console.log("Sending email data:", { emailAdd: email });

const response = await axios.post(
`${process.env.REACT_APP_API_ROOT}/api/recruit/mail`,
{ emailAdd: email }
);

console.log("Response data:", response.data);
// console.log("Response data:", response.data);

if (response.status === 200) {
setResponse("메일이 정상적으로 제출되었습니다.");
Expand Down

0 comments on commit 75b3e28

Please sign in to comment.