diff --git a/static/app/views/issueList/overview.tsx b/static/app/views/issueList/overview.tsx index 40d62db9e57c47..2ddf8d525764ee 100644 --- a/static/app/views/issueList/overview.tsx +++ b/static/app/views/issueList/overview.tsx @@ -170,9 +170,12 @@ function IssueListOverview({ const navigate = useNavigate(); const {selection} = usePageFilters(); const api = useApi(); + const prefersStackedNav = usePrefersStackedNav(); const realtimeActiveCookie = Cookies.get('realtimeActive'); const [realtimeActive, setRealtimeActive] = useState( - typeof realtimeActiveCookie === 'undefined' ? false : realtimeActiveCookie === 'true' + prefersStackedNav || typeof realtimeActiveCookie === 'undefined' + ? false + : realtimeActiveCookie === 'true' ); const [groupIds, setGroupIds] = useState([]); const [pageLinks, setPageLinks] = useState(''); @@ -188,7 +191,6 @@ function IssueListOverview({ const undoRef = useRef(false); const pollerRef = useRef(undefined); const actionTakenRef = useRef(false); - const prefersStackedNav = usePrefersStackedNav(); const urlParams = useParams<{viewId?: string}>(); const {savedSearch, savedSearchLoading, savedSearches, selectedSearchId} =