Skip to content

Commit be1c69d

Browse files
committed
Merge branch 'develop'
2 parents 2ae5b76 + 05f5bbb commit be1c69d

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
@@ -29,7 +29,7 @@ export const VolunteerApplication = () => {
2929
'Status:',
3030
error.response?.status,
3131
'Message:',
32-
error.response?.data,
32+
JSON.stringify(error.response?.data),
3333
);
3434
return;
3535
}

src/pages/Volunteer/History.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const VolunteerHistory = () => {
2929
'Status:',
3030
error.response?.status,
3131
'Message:',
32-
error.response?.data,
32+
JSON.stringify(error.response?.data),
3333
);
3434
return;
3535
}

0 commit comments

Comments
 (0)