We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 630fd80 + 300b24f commit 7922d66Copy full SHA for 7922d66
src/pages/Volunteer/Application.tsx
@@ -22,6 +22,7 @@ export const VolunteerApplication = () => {
22
const [applications, setApplications] = useState<any[]>([]);
23
24
useEffect(() => {
25
+ console.log('연동 성공! 데이터:', data);
26
setApplications(data?.volunteers || []);
27
}, [data]);
28
src/pages/Volunteer/History.tsx
@@ -22,6 +22,7 @@ export const VolunteerHistory = () => {
const { data } = useGetMyVolunteers();
setHistories(data?.volunteer_applications || []);
0 commit comments