From 3011ef9da1cfe4ac7a88a762984a1cb9a1eb91ee Mon Sep 17 00:00:00 2001 From: guru_sainath Date: Fri, 11 Oct 2024 15:53:58 +0530 Subject: [PATCH] build-error: removed store prop from calendar store (#5801) --- 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(); } }