Skip to content

Commit

Permalink
Merge pull request #125 from APPS-sookmyung/feat/#122-login-modi
Browse files Browse the repository at this point in the history
#122 [FEAT] 로그인코드 수정
  • Loading branch information
kimhyerims authored Dec 25, 2024
2 parents c2a580f + f1ff1b0 commit a90d9e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/apis/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ export {
searchCards,
} from './cards';
export { getMyCard, postMyCard, deleteMyCard, putMyCard } from './myCard';
export { kakaoLoginAPI } from './login';
2 changes: 1 addition & 1 deletion src/pages/LoginPage/LoginPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { PrimaryButton, SecondaryButton } from '../../components';
import { useNavigate } from 'react-router-dom';

// import { kakaoLoginAPI, getUserInfo } from '../../apis/login';
import { kakaoLoginAPI } from '../../apis/login';
import { kakaoLoginAPI } from '../../apis';

export default function LoginPage() {
const navigate = useNavigate();
Expand Down

0 comments on commit a90d9e9

Please sign in to comment.