diff --git a/static/app/components/devtoolbar/components/feedback/useInfiniteFeedbackList.tsx b/static/app/components/devtoolbar/components/feedback/useInfiniteFeedbackList.tsx index bbf826fbdbe63..74ae8de89c302 100644 --- a/static/app/components/devtoolbar/components/feedback/useInfiniteFeedbackList.tsx +++ b/static/app/components/devtoolbar/components/feedback/useInfiniteFeedbackList.tsx @@ -25,7 +25,11 @@ 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 0a979fb85a7c0..4edbe93dc5c3f 100644 --- a/static/app/components/devtoolbar/components/issues/useInfiniteIssuesList.tsx +++ b/static/app/components/devtoolbar/components/issues/useInfiniteIssuesList.tsx @@ -27,6 +27,17 @@ 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 7fa2ed6633ab5..0b00e9374533a 100644 --- a/static/app/components/feedback/getFeedbackItemQueryKey.tsx +++ b/static/app/components/feedback/getFeedbackItemQueryKey.tsx @@ -17,6 +17,7 @@ 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 8c347d26b115f..2488ac154a98d 100644 --- a/static/app/components/feedback/useFeedbackListQueryKey.tsx +++ b/static/app/components/feedback/useFeedbackListQueryKey.tsx @@ -58,9 +58,12 @@ 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