From 320cb94e35828f41142e377d866e24c0ae1ca65d Mon Sep 17 00:00:00 2001 From: 17347013442 <52845516+17347013442@users.noreply.github.com> Date: Tue, 16 Apr 2024 15:54:54 +0800 Subject: [PATCH] Update issue_details.ts (#4199) You should implement the interface here, not yourself --- space/store/issue_details.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/space/store/issue_details.ts b/space/store/issue_details.ts index 766cb979d..b616ac35c 100644 --- a/space/store/issue_details.ts +++ b/space/store/issue_details.ts @@ -54,7 +54,7 @@ export interface IIssueDetailStore { removeIssueVote: (workspaceId: string, projectId: string, issueId: string) => Promise; } -class IssueDetailStore implements IssueDetailStore { +class IssueDetailStore implements IIssueDetailStore { loader: boolean = false; error: any = null; peekId: string | null = null;