From b730945d3426db23d9c07d59a79a3b931144d989 Mon Sep 17 00:00:00 2001 From: Hyang-Dan Date: Tue, 2 Dec 2025 22:39:47 +0900 Subject: [PATCH] =?UTF-8?q?issue=20#37=20-=20=EB=B9=84=EB=B0=80=EB=B2=88?= =?UTF-8?q?=ED=98=B8=20=EC=B4=88=EA=B8=B0=ED=99=94=20=ED=99=94=EB=A9=B4=20?= =?UTF-8?q?=EA=B8=B0=EB=8A=A5=20=EA=B5=AC=ED=98=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/network/AccountNetwork.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/network/AccountNetwork.ts b/src/network/AccountNetwork.ts index 495e744..644d74c 100644 --- a/src/network/AccountNetwork.ts +++ b/src/network/AccountNetwork.ts @@ -76,21 +76,21 @@ export class AccountNetwork extends BaseNetwork { async sendResetPasswordCode(data: SendResetPasswordCodeRequest) { return await this.post( - '/send-reset-password-code', + this.baseUrl + '/send-reset-password-code', data ); } async verifyResetPasswordCode(data: VerifyResetPasswordCodeRequest) { return await this.post( - '/verify-reset-password-code', + this.baseUrl + '/verify-reset-password-code', data ); } async resetPassword(data: ResetPasswordRequest) { return await this.post( - '/reset-password', + this.baseUrl + '/reset-password', data ); }