diff --git a/src/components/input/FilterEditForm.tsx b/src/components/input/FilterEditForm.tsx index f9458f99e..d8650ec09 100644 --- a/src/components/input/FilterEditForm.tsx +++ b/src/components/input/FilterEditForm.tsx @@ -28,7 +28,7 @@ export function FilterEditForm({ websiteId, onChange, onClose }: FilterEditFormP const [currentMatch, setCurrentMatch] = useState(match || 'all'); const { isMobile } = useMobile(); const excludeFilters = pathname.includes('/pixels') || pathname.includes('/links'); - const excludeEvent = !pathname.endsWith('/events'); + const excludeEvent = !pathname.endsWith('/events') && !pathname.endsWith('/replays'); const handleReset = () => { setCurrentFilters([]);