feat: update Dockerfile and nginx configuration for improved API routing; modify events API response structure

This commit is contained in:
Thibault Pouch
2026-03-03 10:24:31 +01:00
parent d08cda9d22
commit db647fe7ac
4 changed files with 9 additions and 11 deletions

View File

@@ -257,7 +257,7 @@ export default function EventsPage() {
useEffect(() => {
eventsApi.getEvents(true)
.then((res) => setEvents(res.data))
.then((res) => setEvents(res.events))
.catch(() => setEvents([]))
.finally(() => setLoading(false));
}, []);