Skip to content

Commit

Permalink
fix: 역량 키워드 id 반환 로직 변경(#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
whereami2048 committed May 18, 2024
1 parent bfe1822 commit fd5068d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class StrongPointCreateService(
validateOverCountLimit(userStrongPoints)
validateDuplicatedName(userStrongPoints, request.name)
}.let {
val newStrongPointId = strongPointAppender.appendStrongPoint(request.name, it)
CreateStrongPoint.Response(newStrongPointId)
val newStrongPoint = strongPointAppender.appendStrongPoint(request.name, it)
CreateStrongPoint.Response(newStrongPoint.id)
}
}

Expand Down

0 comments on commit fd5068d

Please sign in to comment.