박권수

style. error message

...@@ -64,7 +64,7 @@ const LoginContainer = (props : LoginProps) => { ...@@ -64,7 +64,7 @@ const LoginContainer = (props : LoginProps) => {
64 Alert.onError('권한이 없는 유저입니다.', () => props.history.push('/')); 64 Alert.onError('권한이 없는 유저입니다.', () => props.history.push('/'));
65 } 65 }
66 } catch(e) { 66 } catch(e) {
67 - Alert.onError(e.response.data, () => null); 67 + Alert.onError(e.response.data.error, () => null);
68 } 68 }
69 69
70 }; 70 };
......
...@@ -193,7 +193,7 @@ const RegisterContainer = (props : RegisterProps) => { ...@@ -193,7 +193,7 @@ const RegisterContainer = (props : RegisterProps) => {
193 Alert.onSuccess('회원가입 성공, 관리자의 승인을 대기하세요.', () => props.history.push('/login')); 193 Alert.onSuccess('회원가입 성공, 관리자의 승인을 대기하세요.', () => props.history.push('/login'));
194 } 194 }
195 } catch(e) { 195 } catch(e) {
196 - Alert.onError(e.response.data, () => null); 196 + Alert.onError(e.response.data.error, () => null);
197 } 197 }
198 }; 198 };
199 199
......