Skip to content

Commit

Permalink
Merge pull request #55 from teamViNO/feature-059
Browse files Browse the repository at this point in the history
feature-059: 카카오 로그인 API 파라미터 수정
  • Loading branch information
whistleJs authored Feb 12, 2024
2 parents 867df1d + 5d6d044 commit 98cf00b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apis/social-account.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import axios from './config/instance';

export const kakaoLoginAPI = (token: string) => {
return axios.get(`/kakao-login?token=${token}`);
export const kakaoLoginAPI = (code: string) => {
return axios.get(`/kakao-login?code=${code}`);
};

0 comments on commit 98cf00b

Please sign in to comment.