Skip to content

Commit

Permalink
fix: 잘못된 url 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
smb0123 committed Sep 1, 2024
1 parent e86f825 commit b26414f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/app/application/backup/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ const sendEmail = async ({
applicantId: string;
email: string;
}) => {
const response = await axios({
url: process.env.NEXT_PUBLIC_API_URL + "/api/v1/applicants/mail",
await axios({
url: process.env.NEXT_PUBLIC_API_URL + "/applicants/mail",
method: "POST",
data: { email, applicantId },
headers: { "Content-Type": "application/json; charset=utf-8" },
Expand Down

0 comments on commit b26414f

Please sign in to comment.