From 4ae0604bd7d1a21440ce57a08092bc6ad6a049f9 Mon Sep 17 00:00:00 2001 From: loopy-lim Date: Mon, 4 Mar 2024 00:18:43 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20content=EA=B0=80=20=EB=B9=84?= =?UTF-8?q?=EC=96=B4=EC=9E=88=EC=9C=BC=EB=A9=B4=20=EC=95=88=EB=90=9C?= =?UTF-8?q?=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/app/application/backup/route.ts | 11 +++++------ frontend/tsconfig.json | 8 +++++++- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/frontend/app/application/backup/route.ts b/frontend/app/application/backup/route.ts index b208425d..62a502dc 100644 --- a/frontend/app/application/backup/route.ts +++ b/frontend/app/application/backup/route.ts @@ -40,15 +40,14 @@ const sendSms = async ({ name, phone }: { name: string; phone: string }) => { contentType: "COMM", countryCode: "82", from: "01030665016", - content: "", + content: + "안녕하세요," + + name + + "님\n" + + '2024년 1학기 에코노베이션 27기 신입회원 모집에 지원해주셔서 감사드립니다.\n한 번 제출하신 지원서는 수정이 불가능하며, 서류 합격 여부 및 면접 시간은 3월 18일 월요일에 안내될 예정입니다.\n더 궁금하신 내용은 카카오톡 채널 "에코노베이션"으로 문의 주시길 바랍니다.\n감사합니다.', messages: [ { to: phone, - content: - "안녕하세요," + - name + - "님\n" + - '2024년 1학기 에코노베이션 27기 신입회원 모집에 지원해주셔서 감사드립니다.\n한 번 제출하신 지원서는 수정이 불가능하며, 서류 합격 여부 및 면접 시간은 3월 18일 월요일에 안내될 예정입니다.\n더 궁금하신 내용은 카카오톡 채널 "에코노베이션"으로 문의 주시길 바랍니다.\n감사합니다.', }, ], }; diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 23ba4fd5..99ccfad7 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -23,6 +23,12 @@ "@/*": ["./*"] } }, - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], + "include": [ + "next-env.d.ts", + "**/*.ts", + "**/*.tsx", + ".next/types/**/*.ts", + "index.js" + ], "exclude": ["node_modules"] } From c5cb387a94d96bc85f1130669786ed4a7d1683ac Mon Sep 17 00:00:00 2001 From: loopy-lim Date: Mon, 4 Mar 2024 00:20:03 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20content=EA=B0=80=20=EC=9E=88?= =?UTF-8?q?=EC=96=B4=EC=95=BC=20=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/tsconfig.json | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 99ccfad7..23ba4fd5 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -23,12 +23,6 @@ "@/*": ["./*"] } }, - "include": [ - "next-env.d.ts", - "**/*.ts", - "**/*.tsx", - ".next/types/**/*.ts", - "index.js" - ], + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "exclude": ["node_modules"] }