From 5a0243a42b40172c20341e79a5a2e4b5662b56bf Mon Sep 17 00:00:00 2001 From: Francis Cao Date: Tue, 3 Mar 2026 23:20:25 -0800 Subject: [PATCH] allow event filter on Replays page --- src/components/input/FilterEditForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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([]);