From 1d677914b3ffb421ebd4945277c884c625d7dc4e Mon Sep 17 00:00:00 2001 From: Nathan Pietrantonio Date: Sun, 12 May 2024 17:11:44 -0700 Subject: [PATCH] Remove commented code --- src/components/Events/FeaturedDashboard.jsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Events/FeaturedDashboard.jsx b/src/components/Events/FeaturedDashboard.jsx index 6377fb4..9bf0b1e 100644 --- a/src/components/Events/FeaturedDashboard.jsx +++ b/src/components/Events/FeaturedDashboard.jsx @@ -21,7 +21,6 @@ const FeaturedDashboard = ({ const getEvents = async () => { try { - // const eventsData = await Backend.get('/events'); const eventsData = await Backend.get(`/data/unregistered/${user.id}`); setFeaturedEvents(eventsData.data.slice(0, numEvents)); } catch (err) {