diff --git a/static/app/components/devtoolbar/components/feedback/useInfiniteFeedbackList.tsx b/static/app/components/devtoolbar/components/feedback/useInfiniteFeedbackList.tsx index 74ae8de89c3024..bbf826fbdbe63a 100644 --- a/static/app/components/devtoolbar/components/feedback/useInfiniteFeedbackList.tsx +++ b/static/app/components/devtoolbar/components/feedback/useInfiniteFeedbackList.tsx @@ -25,11 +25,7 @@ export default function useInfiniteFeedbackList({query}: Props) { project: projectId, statsPeriod: '14d', mailbox, - - collapse: ['inbox'], expand: [ - 'owners', // Gives us assignment - 'stats', // Gives us `firstSeen` // 'pluginActions', // Gives us plugin actions available // 'pluginIssues', // Gives us plugin issues available // 'integrationIssues', // Gives us integration issues available diff --git a/static/app/components/devtoolbar/components/issues/useInfiniteIssuesList.tsx b/static/app/components/devtoolbar/components/issues/useInfiniteIssuesList.tsx index 4edbe93dc5c3f9..0a979fb85a7c01 100644 --- a/static/app/components/devtoolbar/components/issues/useInfiniteIssuesList.tsx +++ b/static/app/components/devtoolbar/components/issues/useInfiniteIssuesList.tsx @@ -27,17 +27,6 @@ export default function useInfiniteIssuesList({query}: Props) { environment: Array.isArray(environment) ? environment : [environment], project: projectId, statsPeriod: '14d', - - collapse: ['inbox'], - expand: [ - 'owners', // Gives us assignment - 'stats', // Gives us `firstSeen` - // 'pluginActions', // Gives us plugin actions available - // 'pluginIssues', // Gives us plugin issues available - // 'integrationIssues', // Gives us integration issues available - // 'sentryAppIssues', // Gives us Sentry app issues available - // 'latestEventHasAttachments', // Gives us whether the feedback has screenshots - ], shortIdLookup: 0, query: `issue.category:[${IssueCategory.ERROR},${IssueCategory.PERFORMANCE}] status:${mailbox} ${query}`, }, diff --git a/static/app/components/feedback/getFeedbackItemQueryKey.tsx b/static/app/components/feedback/getFeedbackItemQueryKey.tsx index 0b00e9374533a4..7fa2ed6633ab54 100644 --- a/static/app/components/feedback/getFeedbackItemQueryKey.tsx +++ b/static/app/components/feedback/getFeedbackItemQueryKey.tsx @@ -17,7 +17,6 @@ export default function getFeedbackItemQueryKey({feedbackId, organization}: Prop { query: { collapse: ['release', 'tags'], - expand: ['inbox', 'owners'], }, }, ] diff --git a/static/app/components/feedback/useFeedbackListQueryKey.tsx b/static/app/components/feedback/useFeedbackListQueryKey.tsx index 2488ac154a98df..8c347d26b115f1 100644 --- a/static/app/components/feedback/useFeedbackListQueryKey.tsx +++ b/static/app/components/feedback/useFeedbackListQueryKey.tsx @@ -58,12 +58,9 @@ export default function useFeedbackListQueryKey({ { query: { ...fixedQueryView, - collapse: ['inbox'], expand: prefetch ? [] : [ - 'owners', // Gives us assignment - 'stats', // Gives us `firstSeen` 'pluginActions', // Gives us plugin actions available 'pluginIssues', // Gives us plugin issues available 'integrationIssues', // Gives us integration issues available