Skip to content

Commit

Permalink
fix: 빌드 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
nebulaBdj committed Oct 26, 2024
1 parent f830294 commit 57acf0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/auth/callback/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default function LoginCheck() {
if (code) {
if (state) {
sendDataArr.push({ name: 'code', value: code })
sendDataArr.push({ name: 'state', value: code })
sendDataArr.push({ name: 'state', value: state })
getUserData('naver', sendDataArr)
return
}
Expand All @@ -71,7 +71,7 @@ export default function LoginCheck() {
sendDataArr.push({ name: 'code', value: code })
getUserData('kakao', sendDataArr)
}
}, [])
}, [code, state, scope])

return <div>로그인 정보를 확인중입니다...</div>
}
Expand Down

0 comments on commit 57acf0b

Please sign in to comment.