Skip to content

Commit

Permalink
Merge pull request #30 from Timetris-Trendithon/loginError
Browse files Browse the repository at this point in the history
🚑Fix: 로그인 리다이렉트 경로 수정
  • Loading branch information
jiinkyung authored Feb 22, 2024
2 parents d353cc7 + e2249cd commit 2021c48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void onAuthenticationSuccess(HttpServletRequest request, HttpServletRespo
accessToken = loginSuccess(response, oAuth2User);
}

String redirectUrl = "http://localhost:3000?accessToken=" + accessToken;
String redirectUrl = "http://localhost:3000/pds?accessToken=" + accessToken;

response.sendRedirect(redirectUrl);

Expand Down

0 comments on commit 2021c48

Please sign in to comment.