From 239afecb3bc8a8f236cad070f2a16abb32c07b69 Mon Sep 17 00:00:00 2001 From: AbhiVarde Date: Sun, 29 Mar 2026 15:13:41 +0530 Subject: [PATCH] fix: constrain actions filter dropdown height and prevent mobile overflow --- .../src/components/actions/actions-list.tsx | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/actions/actions-list.tsx b/apps/web/src/components/actions/actions-list.tsx index a67772dc..be17e7ff 100644 --- a/apps/web/src/components/actions/actions-list.tsx +++ b/apps/web/src/components/actions/actions-list.tsx @@ -173,6 +173,7 @@ function CombinedFilterDropdown({ }[]; }) { const [open, setOpen] = useState(false); + const dropdownRef = useRef(null); const activeFilters = filters.filter((f) => f.options[0]?.value !== f.value); const activeCount = activeFilters.length; @@ -180,6 +181,7 @@ function CombinedFilterDropdown({