From 5bf12400c656b715ed2625e6c9b224bdd49153b1 Mon Sep 17 00:00:00 2001 From: gurusainath Date: Fri, 11 Oct 2024 15:42:58 +0530 Subject: [PATCH] build-error: removed store prop from calendar store --- web/core/store/issue/root.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/core/store/issue/root.store.ts b/web/core/store/issue/root.store.ts index 7cf2afda27f..20e989c8aff 100644 --- a/web/core/store/issue/root.store.ts +++ b/web/core/store/issue/root.store.ts @@ -224,6 +224,6 @@ export class IssueRootStore implements IIssueRootStore { this.draftIssues = new DraftIssues(this, this.draftIssuesFilter); this.issueKanBanView = new IssueKanBanViewStore(this); - this.issueCalendarView = new CalendarStore(this); + this.issueCalendarView = new CalendarStore(); } }