diff --git a/apps/client/src/widgets/view_widgets/calendar_view.ts b/apps/client/src/widgets/view_widgets/calendar_view.ts index 8402d1eb8..b3f3316d9 100644 --- a/apps/client/src/widgets/view_widgets/calendar_view.ts +++ b/apps/client/src/widgets/view_widgets/calendar_view.ts @@ -458,13 +458,6 @@ export default class CalendarView extends ViewMode<{}> { for (const note of notes) { const startDate = CalendarView.#getCustomisableLabel(note, "startDate", "calendar:startDate"); - if (note.hasChildren()) { - const childrenEventData = await this.buildEvents(note.getChildNoteIds()); - if (childrenEventData.length > 0) { - events.push(childrenEventData); - } - } - if (!startDate) { continue; }