Skip to content

Commit

Permalink
Merge pull request #137 from dnd-side-project/fix/#136
Browse files Browse the repository at this point in the history
Fix redirect url after login
  • Loading branch information
miraexhoi authored Sep 17, 2024
2 parents 318361c + 3e0bd1f commit 429dc70
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private void writeResponse(HttpServletResponse response, String accessToken, boo
response.setCharacterEncoding(StandardCharsets.UTF_8.name());

try {
String redirectUrl = UriComponentsBuilder.fromUriString("http://localhost:3000/home")
String redirectUrl = UriComponentsBuilder.fromUriString("http://localhost:3000/google/callback/loading")
.queryParam("accessToken", accessToken)
.queryParam("isSignUp", isSignUp)
.build().toUriString();
Expand Down

0 comments on commit 429dc70

Please sign in to comment.