Skip to content

Commit bc0e400

Browse files
committed
feat : 연동 실패시 에러 메시지 로그
1 parent fed45d3 commit bc0e400

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pages/Volunteer/Application.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const VolunteerApplication = () => {
2424
useEffect(() => {
2525
if (isLoading) return;
2626
if (isError) {
27-
console.error('봉사 데이터 불러오기 실패함');
27+
console.error('봉사 데이터 불러오기 실패함, ', isError);
2828
return;
2929
}
3030
if (data) {

src/pages/Volunteer/History.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const VolunteerHistory = () => {
2424
useEffect(() => {
2525
if (isLoading) return;
2626
if (isError) {
27-
console.error('봉사 데이터 불러오기 실패함');
27+
console.error('봉사 데이터 불러오기 실패함, ', isError);
2828
return;
2929
}
3030
if (data) {

0 commit comments

Comments
 (0)