diff options
| author | joonhoekim <26rote@gmail.com> | 2025-09-10 05:37:01 +0000 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-09-10 05:37:01 +0000 |
| commit | f828b24261b0e3661d4ab0ac72b63431887f35bd (patch) | |
| tree | f9640a211537bdcdbc6f51324e481ac30eab3b9b /lib | |
| parent | df32fc5d6ab8bd044d6a26a459fe15869c99767e (diff) | |
Revert "(김준회) 비즈뿌리오 SMS 전송시 국가코드 숫자로 보내도록 변경"
This reverts commit df32fc5d6ab8bd044d6a26a459fe15869c99767e.
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/users/auth/passwordUtil.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/users/auth/passwordUtil.ts b/lib/users/auth/passwordUtil.ts index 6625edb4..7cf101c7 100644 --- a/lib/users/auth/passwordUtil.ts +++ b/lib/users/auth/passwordUtil.ts @@ -431,7 +431,7 @@ async function sendSmsMessage(phoneNumber: string, message: string): Promise<boo type: 'sms', from: fromNumber, to: countryInfo.nationalNumber, - country: parseInt(countryInfo.countryCode, 10), // 문자열을 숫자로 변환 + country: countryInfo.countryCode, content: { sms: { message: message |
