메뉴별 권한 관리 기능 개선

- defaultGrant 값에 따른 권한 항목 조건부 표시 구현
- 권한 상태 관리 로직 개선 (초기값과 기본값 분리)
- API 응답 구조 타입 수정 및 처리 로직 개선
- 거래취소 비밀번호 변경 페이지 오타 수정

🤖 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 16:26:13 +09:00
parent 74ab29f80a
commit 3027d6d3ab
5 changed files with 65 additions and 38 deletions

View File

@@ -42,6 +42,6 @@ export const API_URL_USER = {
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/user/password`;
},
userChangeCancelPassword: () => {
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/user/cancel/change`;
return `${API_BASE_URL}/api/v1/${API_URL_KEY}/user/cancle/change`;
}
}