diff --git a/frontend/app/components/shared/SessionFilters/SessionFilters.tsx b/frontend/app/components/shared/SessionFilters/SessionFilters.tsx index b1eb811e3..ab18384c5 100644 --- a/frontend/app/components/shared/SessionFilters/SessionFilters.tsx +++ b/frontend/app/components/shared/SessionFilters/SessionFilters.tsx @@ -24,8 +24,9 @@ function SessionFilters() { const activeProject = projectsStore.active useEffect(() => { - if (searchStore.instance.filters.length === 0 && activeProject?.platform !== 'web') { - searchStore.addFilterByKeyAndValue(FilterKey.LOCATION, '', 'isAny') + // Add default location/screen filter if no filters are present + if (searchStore.instance.filters.length === 0) { + searchStore.addFilterByKeyAndValue(activeProject?.platform === 'web' ? FilterKey.LOCATION : FilterKey.VIEW_MOBILE , '', 'isAny') } }, [projectsStore.activeSiteId, activeProject])