From 82665a35eee56fcd7e691c02c4592fd6b05bfda7 Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Date: Thu, 23 Nov 2023 16:58:08 +0530 Subject: [PATCH] fix: archived issues infinite call (#2848) --- web/store/issues/project-issues/archived/issue.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/store/issues/project-issues/archived/issue.store.ts b/web/store/issues/project-issues/archived/issue.store.ts index 06bd601b1..837a1e74d 100644 --- a/web/store/issues/project-issues/archived/issue.store.ts +++ b/web/store/issues/project-issues/archived/issue.store.ts @@ -101,7 +101,7 @@ export class ProjectArchivedIssuesStore extends IssueBaseStore implements IProje return response; } catch (error) { - this.fetchIssues(workspaceSlug, projectId); + // this.fetchIssues(workspaceSlug, projectId); this.loader = undefined; throw error; }