Skip to content

Commit 7922d66

Browse files
committed
Merge branch 'develop'
2 parents 630fd80 + 300b24f commit 7922d66

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/pages/Volunteer/Application.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export const VolunteerApplication = () => {
2222
const [applications, setApplications] = useState<any[]>([]);
2323

2424
useEffect(() => {
25+
console.log('연동 성공! 데이터:', data);
2526
setApplications(data?.volunteers || []);
2627
}, [data]);
2728

src/pages/Volunteer/History.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export const VolunteerHistory = () => {
2222
const { data } = useGetMyVolunteers();
2323

2424
useEffect(() => {
25+
console.log('연동 성공! 데이터:', data);
2526
setHistories(data?.volunteer_applications || []);
2627
}, [data]);
2728

0 commit comments

Comments
 (0)