We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 709275b commit 5149d6aCopy full SHA for 5149d6a
1 file changed
src/hooks/useSocialAuth.ts
@@ -94,16 +94,16 @@ export const useSocialAuth = () => {
94
95
if (res.state === 'NEED_REGISTER') {
96
// WebView에서는 네이티브에 메시지 전송
97
- if (isWebView && (window as any).ReactNativeWebView) {
98
- (window as any).ReactNativeWebView.postMessage(
99
- JSON.stringify({
100
- type: MESSAGE_TYPES.NEED_REGISTER,
101
- email: res.email,
102
- provider,
103
- }),
104
- );
105
- return;
106
- }
+ // if (isWebView && (window as any).ReactNativeWebView) {
+ // (window as any).ReactNativeWebView.postMessage(
+ // JSON.stringify({
+ // type: MESSAGE_TYPES.NEED_REGISTER,
+ // email: res.email,
+ // provider,
+ // }),
+ // );
+ // return;
+ // }
107
108
// 브라우저에서는 회원가입 페이지로 이동
109
navigate(webPath.register, {
0 commit comments