We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6df51d0 commit ed1da4fCopy full SHA for ed1da4f
src/main/java/com/devpath/domain/user/converter/UserConverter.java
@@ -20,7 +20,7 @@ public static MyCardRes toMyCardRes(User user) {
20
.phoneNumber(user.getPhone())
21
.link(user.getLink())
22
.level(user.getLevel().toString())
23
- .techStacks(techStacks.stream().map(TechStack::getTechStackName).map(TechStackName::getDescription).toList())
+ .techStacks(techStacks.stream().map(TechStack::getTechStackName).map(TechStackName::name).toList())
24
.build();
25
}
26
0 commit comments