Skip to content

Commit

Permalink
fix: topbar의 요청 정보 오류 수정
Browse files Browse the repository at this point in the history
- ID를 보내던 것을 pk를 보내도록 수정
  • Loading branch information
seungh1024 committed Aug 6, 2024
1 parent 631d2be commit 75e3c9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/common/topbar.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<%
if(loginInfo != null){
%>
<li><a href="/api/users/profile?userId=<%=loginInfo.getUserId()%>"><i class="glyphicon glyphicon-user"></i></a></li>
<li><a href="/api/users/profile?userId=<%=loginInfo.getId()%>"><i class="glyphicon glyphicon-user"></i></a></li>
<%
}else{
%>
Expand Down

0 comments on commit 75e3c9e

Please sign in to comment.