-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: 카카오 OAuth 로그인 기능 구현 #23
Conversation
@ParkSohyunee is attempting to deploy a commit to the Eujin Ahn's projects Team on Vercel. A member of the Team first needs to authorize it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
헉 소현님 로그인 빠르게 구현해주셔서 감사합니다..!! 소현님 덕분에 인가에 대해서 더 확실히 공부할 수 있게 된 것 같습니다👍👍 zustand 저렇게 사용하는 것이었군요...👀 LGTM!!
src/store/useUser.ts
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
오와,, store이라는 폴더명이 낯설어서 주스탠드 공식문서 보고왔는데
소현님께서 파일명, 폴더이름, export이름 까지 공식문서 내용이랑 같아서 상세한 곳 하나하나 다 신경쓰신게 느껴지네요,,
정말 깔끔합니다 LGTM!
if (error instanceof AxiosError) { | ||
if (!controller.signal.aborted) { | ||
console.error(error.message); | ||
} else { | ||
console.log('Request canceled:', error.message); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
소현님 요청취소 구현하신거 보고 처음 알아갑니다!
로그인 과정에서 요청을 취소하게 되는 상황이 있어서 구현하신건가요?
어떨때 필요해서 구현하신건지 단순히 궁금했습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
유진님! 맞습니다~! useEffect 콜백함수에서 api 요청을 보내고 있는데 중복으로 호출되는 문제가 있어서 remount가 될 때 이전 api 요청에 대해서는 취소처리가 필요하여 구현하였습니다. 자세한 내용은 관련 이슈에 남겨 놓았습니다. 참고 부탁드립니다~!😊
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
소현님, zustand랑 OAuth까지 구현하시느라 공부를 정말 많이 하셨을 것 같아요...!
다음에 OAuth 설명 들려주시면 찾아가겠습니다 ㅎㅎ
정말 감사합니다! LGTM 👍👍
개요
작업 사항
참고 사항 (optional)
관련 이슈 (optional)
스크린샷
리뷰어에게
ㄴ 완료시점에 다시 한번 노티드리겠습니다.