From 19cbd9b11540303e268b932f1fbde7861d34f9f3 Mon Sep 17 00:00:00 2001 From: Jay Sheen Date: Mon, 29 Sep 2025 17:43:15 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=EC=9D=B8=20=EB=B9=84?= =?UTF-8?q?=EB=B0=80=EB=B2=88=ED=98=B8=20=EB=B3=80=EA=B2=BD=20API=20?= =?UTF-8?q?=ED=8C=8C=EB=9D=BC=EB=AF=B8=ED=84=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - ChangePasswordParams 타입 수정: password → currentPassword - 로그인 비밀번호 변경 페이지에서 currentPassword 전달하도록 수정 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/entities/user/model/types.ts | 2 +- src/pages/account/password/modify-login-password-page.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entities/user/model/types.ts b/src/entities/user/model/types.ts index b31bae5..7dc3ab9 100644 --- a/src/entities/user/model/types.ts +++ b/src/entities/user/model/types.ts @@ -138,7 +138,7 @@ export interface UserMenuPermissionData { export interface ChangePasswordParams { usrid: string; - password: string; + currentPassword: string; newPassword: string; } diff --git a/src/pages/account/password/modify-login-password-page.tsx b/src/pages/account/password/modify-login-password-page.tsx index 8c069f1..0b2f776 100644 --- a/src/pages/account/password/modify-login-password-page.tsx +++ b/src/pages/account/password/modify-login-password-page.tsx @@ -57,7 +57,7 @@ export const PasswordModifyLoginPasswordPage = () => { // TODO: Validate current password before submitting changePasswordMutation.mutate({ usrid: usrid, - password: newPassword, + currentPassword: currentPassword, newPassword: newPassword, }); };