File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments