Skip to content

Commit 2ec5bca

Browse files
committed
fix: 디버그용 출력문 주석처리
1 parent 682081b commit 2ec5bca

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

components/auth/LoginForm.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ const LoginForm = ({ handleOpenModal }: LoginFormProps) => {
3535
githubProvider
3636
);
3737
const user = result.user;
38-
console.log('로그인 성공 : ', user);
38+
// console.log('로그인 성공 : ', user);
3939
router.push('/main');
4040
} catch (err: unknown) {
4141
if (err instanceof Error) {
42-
console.log('로그인 에러 : ', err.message);
42+
// console.log('로그인 에러 : ', err.message);
4343
}
4444
}
4545
};
@@ -65,10 +65,10 @@ const LoginForm = ({ handleOpenModal }: LoginFormProps) => {
6565
email,
6666
password
6767
);
68-
console.log('로그인 성공!', userCredential.user);
68+
// console.log('로그인 성공!', userCredential.user);
6969
router.push('/main');
7070
} catch (err) {
71-
console.error('로그인 에러:', err);
71+
// console.error('로그인 에러:', err);
7272
setError('이메일 또는 비밀번호가 잘못되었습니다.');
7373
setIsLoading(false);
7474
}

0 commit comments

Comments
 (0)