[V0.1 WORKING] Added chat, profile, & calendar screen implementations.

This commit is contained in:
c-d-p
2025-04-18 17:30:09 +02:00
parent bf7eb8275c
commit 8d884111fd
19 changed files with 613 additions and 181 deletions

View File

@@ -11,6 +11,7 @@ export const getCalendarEvents = async (start?: Date, end?: Date): Promise<Calen
params.end = end.toISOString();
}
const response = await apiClient.get('/calendar/events', { params });
console.log("[CAM] Got calendar:", response);
return response.data;
} catch (error) {
console.error("Error fetching calendar events", error);