diff --git a/static/app/views/dashboards/dashboard.tsx b/static/app/views/dashboards/dashboard.tsx index a14cf7f9c2f332..0ab1f1ca7553a1 100644 --- a/static/app/views/dashboards/dashboard.tsx +++ b/static/app/views/dashboards/dashboard.tsx @@ -155,12 +155,14 @@ function Dashboard({ ); }, [api, organization.slug, selection.projects]); - // The operations in this effect should only run on mount/unmount useEffect(() => { - window.addEventListener('resize', debouncedHandleResize); - // Always load organization tags on dashboards loadOrganizationTags(api, organization.slug, selection); + }, [api, organization.slug, selection]); + + // The operations in this effect should only run on mount/unmount + useEffect(() => { + window.addEventListener('resize', debouncedHandleResize); // Get member list data for issue widgets fetchMemberList();