From 47a024491918e0ebff9d4034bd9a225663907abd Mon Sep 17 00:00:00 2001 From: MichaelSun48 Date: Mon, 6 Jan 2025 18:02:04 -0800 Subject: [PATCH] Remove unncessary extend and comment --- static/app/views/issueList/queries/useFetchIssueCounts.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/static/app/views/issueList/queries/useFetchIssueCounts.tsx b/static/app/views/issueList/queries/useFetchIssueCounts.tsx index 65b1f5a33a4bfc..7656d8fc681c13 100644 --- a/static/app/views/issueList/queries/useFetchIssueCounts.tsx +++ b/static/app/views/issueList/queries/useFetchIssueCounts.tsx @@ -1,10 +1,8 @@ -import type {PageFilters} from 'sentry/types/core'; import type {ApiQueryKey, UseApiQueryOptions} from 'sentry/utils/queryClient'; import {useApiQuery} from 'sentry/utils/queryClient'; import type {QueryCounts} from 'sentry/views/issueList/utils'; -// Copied from CountEndpointParams in overview.tsx -interface FetchIssueCountsParameters extends Partial { +interface FetchIssueCountsParameters { environment: string[]; orgSlug: string; project: number[];