diff --git a/admin/src/components/VolunteerLayout.tsx b/admin/src/components/VolunteerLayout.tsx index fc969159..b3d1a5ca 100644 --- a/admin/src/components/VolunteerLayout.tsx +++ b/admin/src/components/VolunteerLayout.tsx @@ -103,7 +103,7 @@ export default function VolunteerLayout() { { try { const campaigns = await actionCampaignsService.listCampaigns(); - res.json(campaigns); + res.json({ items: campaigns }); } catch (err) { next(err); }