From 3f429a1dabc985805f2eabc66192567554741b54 Mon Sep 17 00:00:00 2001 From: rahulramesha <71900764+rahulramesha@users.noreply.github.com> Date: Tue, 29 Oct 2024 20:51:56 +0530 Subject: [PATCH] minor build fix (#5929) --- web/core/store/issue/issue-details/root.store.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/core/store/issue/issue-details/root.store.ts b/web/core/store/issue/issue-details/root.store.ts index 120b5dc92c..e6e0ca8d0b 100644 --- a/web/core/store/issue/issue-details/root.store.ts +++ b/web/core/store/issue/issue-details/root.store.ts @@ -16,6 +16,7 @@ import { IIssueActivityStoreActions, TActivityLoader, } from "@/plane-web/store/issue/issue-details/activity.store"; +import { RootStore } from "@/plane-web/store/root.store"; import { TIssueRelationTypes } from "@/plane-web/types"; import { IIssueRootStore } from "../root.store"; import { IIssueAttachmentStore, IssueAttachmentStore, IIssueAttachmentStoreActions } from "./attachment.store"; @@ -194,7 +195,7 @@ export class IssueDetail implements IIssueDetail { this.issue = new IssueStore(this); this.reaction = new IssueReactionStore(this); this.attachment = new IssueAttachmentStore(rootStore); - this.activity = new IssueActivityStore(rootStore.rootStore); + this.activity = new IssueActivityStore(rootStore.rootStore as RootStore); this.comment = new IssueCommentStore(this); this.commentReaction = new IssueCommentReactionStore(this); this.subIssues = new IssueSubIssuesStore(this);