Skip to content

Commit

Permalink
fix: namecard/keywords 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eckrin committed Oct 7, 2023
1 parent 38718cf commit 0521165
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ public GetNameCardResponseDto getNameCard(AuthInfo authInfo) {

@Transactional
public GetKeywordListResponseDto getAllKeywords() {
return new GetKeywordListResponseDto(keywordRepository.findAll().stream().map(Keyword::toString).collect(Collectors.toList()));
return new GetKeywordListResponseDto(keywordRepository.findAll().stream().map(k->k.getValue()).collect(Collectors.toList()));
}
}

0 comments on commit 0521165

Please sign in to comment.