로그인 비밀번호 변경 API 파라미터 수정

- ChangePasswordParams 타입 수정: password → currentPassword
- 로그인 비밀번호 변경 페이지에서 currentPassword 전달하도록 수정

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jay Sheen
2025-09-29 17:43:15 +09:00
parent 9ce1c14d34
commit 19cbd9b115
2 changed files with 2 additions and 2 deletions

View File

@@ -138,7 +138,7 @@ export interface UserMenuPermissionData {
export interface ChangePasswordParams {
usrid: string;
password: string;
currentPassword: string;
newPassword: string;
}

View File

@@ -57,7 +57,7 @@ export const PasswordModifyLoginPasswordPage = () => {
// TODO: Validate current password before submitting
changePasswordMutation.mutate({
usrid: usrid,
password: newPassword,
currentPassword: currentPassword,
newPassword: newPassword,
});
};