From 8c3189e1be13d1eaa8cf75765da9f246504003d2 Mon Sep 17 00:00:00 2001 From: Akshita Goyal <36129505+gakshita@users.noreply.github.com> Date: Wed, 13 Nov 2024 15:38:03 +0530 Subject: [PATCH] fix: intake status count (#5990) --- web/core/store/inbox/project-inbox.store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/core/store/inbox/project-inbox.store.ts b/web/core/store/inbox/project-inbox.store.ts index abb82ce79f..4dcb729773 100644 --- a/web/core/store/inbox/project-inbox.store.ts +++ b/web/core/store/inbox/project-inbox.store.ts @@ -388,7 +388,7 @@ export class ProjectInboxStore implements IProjectInboxStore { else this.loader = "mutation-loading"; if (loadingType) this.loader = loadingType; - const status = this.inboxFilters?.status && uniq([...this.inboxFilters.status, EInboxIssueStatus.SNOOZED]); + const status = this.inboxFilters?.status; const queryParams = this.inboxIssueQueryParams( { ...this.inboxFilters, status }, this.inboxSorting,