@@ -46,7 +46,6 @@ const InputEmail = () => {
4646 const emailRefCurrent = emailRef . current ;
4747 const authenticationNumberRefCurrent = authenticationNumberRef . current ;
4848 if ( id === "email" ) {
49- console . log ( "email입니다" ) ;
5049 setStyle ( ( ) => ( {
5150 ...style ,
5251 bgColorEmail : "bg-inputBoxFocus" ,
@@ -114,7 +113,6 @@ const InputEmail = () => {
114113 onModalOpen ( ) ;
115114 const data = await LoginApi . SendEmailAuthenticationNumber ( payload ) ;
116115 setIsLoding ( ( ) => false ) ;
117- console . log ( data ) ;
118116 if ( data . status === 200 ) {
119117 sessionStorage . setItem ( "changePasswordEmail" , payload . email ) ;
120118 setModalStr ( {
@@ -124,7 +122,6 @@ const InputEmail = () => {
124122 setInputCheck ( ( ) => ( { ...InputCheck , input : true } ) ) ;
125123 }
126124 } catch ( error ) {
127- console . log ( error . response ) ;
128125 const { data } = error . response ;
129126 if ( data . status === 400 ) {
130127 setIsLoding ( ( ) => false ) ;
@@ -182,7 +179,7 @@ const InputEmail = () => {
182179 onModalOpen ( ) ;
183180 const { data } = await LoginApi . SendAuthenticationNumber ( payload ) ;
184181 setIsLoding ( ( ) => false ) ;
185- console . log ( data ) ;
182+
186183 if ( data . status === 200 ) {
187184 setModalStr ( {
188185 ...ModalStr ,
@@ -192,7 +189,6 @@ const InputEmail = () => {
192189 setInputCheck ( ( ) => ( { ...InputCheck , modal : true } ) ) ;
193190 }
194191 } catch ( error ) {
195- console . log ( error . response ) ;
196192 const { data } = error . response ;
197193 if ( data . status === 400 ) {
198194 setIsLoding ( ( ) => false ) ;
0 commit comments