[#] added alert when importing events with error

This commit is contained in:
Camille Moussu
2025-07-07 17:31:31 +02:00
parent 7e7043b47e
commit 2a1af0b9f5
6 changed files with 54 additions and 6 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ export const getCalendarDetailAsync = createAsyncThunk<
const events: CalendarEvent[] = calendar._embedded["dav:item"].map(
(eventdata: any) => {
const datas = eventdata.data[2][0][1];
return parseCalendarEvent(datas, color);
return parseCalendarEvent(datas, color, calId);
}
);