diff --git a/static/app/views/issueList/customViewsHeader.tsx b/static/app/views/issueList/customViewsHeader.tsx index 6fad7c70c02b00..f606ccaa31bef9 100644 --- a/static/app/views/issueList/customViewsHeader.tsx +++ b/static/app/views/issueList/customViewsHeader.tsx @@ -163,7 +163,7 @@ function CustomViewsIssueListHeaderTabsContent({ [organization.slug, updateViews] ); - // This insane useEffect ensures that the correct tab is selected when the page loads and url updates + // This insane useEffect ensures that the correct tab is selected when the url updates useEffect(() => { // If no query, sort, or viewId is present, set the first tab as the selected tab, update query accordingly if (!query && !sort && !viewId) { @@ -241,16 +241,8 @@ function CustomViewsIssueListHeaderTabsContent({ tabListState?.setSelectedKey('temporary-tab'); return; } - }, [ - tabListState, - draggableTabs, - navigate, - organization.slug, - query, - queryParams, - sort, - viewId, - ]); + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [navigate, organization.slug, query, sort, viewId]); // Update local tabs when new views are received from mutation request useEffect(() => { diff --git a/static/app/views/issueList/overview.tsx b/static/app/views/issueList/overview.tsx index e2de38c8b6b522..5a297d66b66818 100644 --- a/static/app/views/issueList/overview.tsx +++ b/static/app/views/issueList/overview.tsx @@ -15,6 +15,7 @@ import {addMessage} from 'sentry/actionCreators/indicator'; import {fetchOrgMembers, indexMembersByProject} from 'sentry/actionCreators/members'; import {fetchTagValues, loadOrganizationTags} from 'sentry/actionCreators/tags'; import type {Client} from 'sentry/api'; +import ErrorBoundary from 'sentry/components/errorBoundary'; import HookOrDefault from 'sentry/components/hookOrDefault'; import * as Layout from 'sentry/components/layouts/thirds'; import LoadingIndicator from 'sentry/components/loadingIndicator'; @@ -1226,12 +1227,14 @@ class IssueListOverview extends Component { return ( {organization.features.includes('issue-stream-custom-views') ? ( - + + + ) : (