Skip to content

Commit

Permalink
[fix] 잘못된 변수명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
edder773 committed Nov 25, 2024
1 parent 8c19b55 commit 3bf6606
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 3bf6606

Please sign in to comment.