현상
src/components/Forms/GroupSelector.jsx:47-63이 response.data.ubuntuGid를 직접 읽음. BE POST /api/groups는 SuccessResponse.created(GroupResponseDTO) — 실제 필드는 response.data.data.ubuntuGid(admin_be develop GroupController.createGroup 확인).
결과: 그룹은 생성됐는데 "서버 응답 형식이 올바르지 않습니다" alert.
수정
response.data.data에서 ubuntuGid/groupName 추출 (기존 data.data || data 폴백 패턴 재사용). 요청 바디 누락 문제는 #8 참조.
🤖 Generated with Claude Code
현상
src/components/Forms/GroupSelector.jsx:47-63이response.data.ubuntuGid를 직접 읽음. BEPOST /api/groups는SuccessResponse.created(GroupResponseDTO)— 실제 필드는response.data.data.ubuntuGid(admin_be developGroupController.createGroup확인).결과: 그룹은 생성됐는데 "서버 응답 형식이 올바르지 않습니다" alert.
수정
response.data.data에서ubuntuGid/groupName추출 (기존data.data || data폴백 패턴 재사용). 요청 바디 누락 문제는 #8 참조.🤖 Generated with Claude Code