Skip to content

Commit

Permalink
Merge pull request #456 from depromeet/fix/aosAppKakaoogin
Browse files Browse the repository at this point in the history
🐛 안드로이드 앱 카카오 로그인 버그 수정
  • Loading branch information
woobottle authored Feb 4, 2024
2 parents 42edee1 + 097ed74 commit e2e510e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/auth/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ export default function LoginPage() {
};

const onClickKakaoLogin = () => {
if (isWebView()) {
// TODO 일부 안드로이드에서도 네이티브 앱 로그인 가능하게끔 나중에 수정하기
if (isWebView() && isIOS()) {
window.ReactNativeWebView?.postMessage(
JSON.stringify({
type: NATIVE_CUSTOM_EVENTS.KAKAO_LOGIN,
Expand Down

0 comments on commit e2e510e

Please sign in to comment.