Skip to content

Commit

Permalink
fix: 리다이렉트 url 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
qormoon committed Jul 13, 2024
1 parent e3fb87b commit a420ba4
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 a420ba4

Please sign in to comment.