Skip to content

Commit

Permalink
Merge pull request #98 from boostcampwm-2024/be/fix/const_fix
Browse files Browse the repository at this point in the history
[BE/fix] 잘못된 변수명 수정
  • Loading branch information
edder773 authored Nov 25, 2024
2 parents 8c19b55 + 3bf6606 commit 41899c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export class AuthService {
member.nickname
);
const oauthRedirectURL = this.configService.get<string>('OAUTH_CALLBACK_URL');
const redirectUrl = `${oauthRedirectURL}?accessToken=${accessToken}&refreshToken=${refreshToken}&nickname=${nickname}`;
const redirectUrl = `${oauthRedirectURL}?accessToken=${accessToken}&refreshToken=${refreshToken}&nickname=${member.nickname}`;
return redirectUrl;
}

Expand Down

0 comments on commit 41899c5

Please sign in to comment.