-
Notifications
You must be signed in to change notification settings - Fork 1
fix: 로그인 안되는 문제 해결 1차 #210
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
The head ref may contain hidden characters: "fix/\uB85C\uADF8\uC778-\uC548\uB418\uB294-\uBB38\uC81C-\uD574\uACB0-1\uCC28"
Changes from 1 commit
edede06
19ecd58
bd52a7d
c632e2d
7363c80
8820e2c
57049e5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,8 +11,8 @@ const KaKaoLogin = () => { | |
| const getTokenAndLogin = async () => { | ||
| if (typeof code === "string") { | ||
| try { | ||
| await login(code); | ||
| navigate("/"); | ||
| const res = await login(code); | ||
| if (res.ok) navigate("/"); | ||
| } catch (err) { | ||
| console.error("카카오 로그인에 실패했습니다."); | ||
|
||
| } | ||
|
|
||
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.
임시로 로컬에서만 동작하도록 처리하신걸까요?
Uh oh!
There was an error while loading. Please reload this page.
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.
이제 보니 잘못하고 loclahost로 넣었네요...배포 주소로 변경하겠습니다 ㅎㅎ