use fetchWrapper for getAllEvents.js

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2026-01-28 14:47:41 +01:00
parent b5786d288d
commit e9c8b7cda8
2 changed files with 6 additions and 24 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ export function EventProvider({ children }) {
const [events, setEvents] = useState([]);
const updateEvent = async () => {
const data = await getAllEvents();
setEvents(data.data);
const result = await getAllEvents();
setEvents(result.data.data);
}
const addEvent = async (name, description, start, end) => {