박권수

feat. 에러 메시지 수정

......@@ -108,9 +108,8 @@ const BottleInfoContainer = (props : BottleInfoProps) => {
Alert.onError('접근 권한이 없습니다.', () => props.history.push('/'));
}
} catch(e : any) {
Alert.onError(e.response.data.error, () => props.history.push('/'));
console.log(e);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => props.history.push('/'));
}
};
......@@ -134,7 +133,7 @@ const BottleInfoContainer = (props : BottleInfoProps) => {
Alert.onError('피드백 등록에 실패했습니다.', () => null);
}
} catch(e : any) {
Alert.onError(e.response.data.error, () => fetchData());
Alert.onError('알 수 없는 에러가 발생했습니다.', () => fetchData());
}
} else {
Alert.onError('피드백 내용을 입력하세요.', () => null);
......
......@@ -66,7 +66,7 @@ const LoginContainer = (props : LoginProps) => {
Alert.onError('권한이 없는 유저입니다.', () => props.history.push('/'));
}
} catch(e : any) {
Alert.onError(e.response.data.error, () => null);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => null);
}
};
......
......@@ -84,7 +84,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
}).catch(error => console.log(error));
}
setLoading(false);
} catch(e) {
} catch(e : any) {
console.log(e);
setLoading(false);
}
......@@ -152,7 +152,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
}
} catch(e : any) {
Alert.onError(e.response.data.error, () => null);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => null);
}
};
......@@ -183,7 +183,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
});
} catch(e : any) {
setLoading(false);
Alert.onError(e.response.data.error, () => null);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => null);
}
};
......@@ -201,7 +201,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
Alert.onError('환자에게 담당의 등록 요청을 실패했습니다.', () => null);
}
} catch(e : any) {
Alert.onError(e.response.data.error, () => null);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => null);
}
};
......@@ -245,7 +245,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
}
setLoading(false);
} catch(e : any) {
Alert.onError(e.response.data.error, () => null);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => null);
}
};
......@@ -284,7 +284,7 @@ const DoctorMenuContainer = (props : DoctorMenuProps) => {
}
} catch(e : any) {
setLoading(false);
Alert.onError(e.response.data.error, () => null);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => null);
}
};
......
......@@ -40,7 +40,8 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
Alert.onError(res.data.error, () => null);
}
} catch(e : any) {
Alert.onError(e.response.data.error, () => null);
console.log(e);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => null);
}
};
......@@ -67,7 +68,7 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
}
})
} catch(e : any) {
Alert.onError(e.response.data.error, () => setModalUp(false));
Alert.onError('알 수 없는 에러가 발생했습니다.', () => setModalUp(false));
}
};
......@@ -102,7 +103,7 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
}
});
} catch(e : any) {
Alert.onError(e.response.data.error, () => setModalUp(false));
Alert.onError('알 수 없는 에러가 발생했습니다.', () => setModalUp(false));
}
};
......@@ -121,7 +122,7 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
}
});
} catch(e : any) {
Alert.onError(e.response.data.error, () => setModalUp(false));
Alert.onError('알 수 없는 에러가 발생했습니다.', () => setModalUp(false));
}
};
......@@ -138,13 +139,14 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
setValidate(res.data.result ? 'Y' : 'N');
}
}).catch(err => {
Alert.onError(err.response.data.error, () => {
console.log(err);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => {
setModalUp(false);
setValidate('W');
});
})
} catch(e : any) {
Alert.onError(e.response.data, () => {
Alert.onError('알 수 없는 에러가 발생했습니다.', () => {
setModalUp(false);
setValidate('W');
});
......@@ -161,7 +163,7 @@ const ManagerMenuContainer = (props : ManagerMenuProps) => {
Alert.onSuccess('탈퇴를 승인했습니다.', fetchData);
}
} catch (e : any) {
Alert.onError(e.response.data.error, () => null);
Alert.onError('알 수 없는 에러가 발생했습니다.', () => null);
}
};
......