Skip to content

Commit

Permalink
Merge pull request #206 from WE-ARE-RACCOONS/RAC-326
Browse files Browse the repository at this point in the history
RAC-326 HotFix : ์„ ๋ฐฐ๋ฆฌ์ŠคํŠธ ์กฐํšŒ์‹œ ๊ต์ˆ˜๋‹˜ ์ถ”๊ฐ€
  • Loading branch information
ywj9811 authored Apr 2, 2024
2 parents 7958a92 + 7a1929f commit 748c7ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ public record SeniorSearchResponse(
String postgradu,
String major,
String lab,
String professor,
String[] keyword
) {}
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public static SeniorSearchResponse mapToSeniorSearch(Senior senior) {
String[] keyword = Arrays.copyOf(allKeywords, Math.min(3, allKeywords.length));

return new SeniorSearchResponse(senior.getSeniorId(), user.getProfile(), user.getNickName(),
info.getPostgradu(), info.getMajor(), info.getLab(),
info.getPostgradu(), info.getMajor(), info.getLab(), info.getProfessor(),
keyword);
}

Expand Down

0 comments on commit 748c7ae

Please sign in to comment.