Skip to content

Commit

Permalink
fix: 프론트측 오류 수정을 위한 리다이렉트 url 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ss7622 authored Jul 15, 2024
1 parent 77b93d3 commit 5055c1d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ public void onAuthenticationSuccess(HttpServletRequest request,
String redirectUri = null;

if(principal.getMemberDto().phoneNumber() == null) {
redirectUri = "https://fiurinee.site/phone";
redirectUri = "http://localhost:3000/phone";
}
else{
redirectUri = "https://fiurinee.site/auth";
redirectUri = "http://localhost:3000/auth";
}

Long memberId = principal.getMemberDto().id();
Expand Down

0 comments on commit 5055c1d

Please sign in to comment.