From c15e4312a00516b9f499580973649e5905b16a59 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 18 Apr 2026 16:02:37 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/contacts.index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/contacts.index.tsx b/src/routes/contacts.index.tsx index 9d841b8..4f5a45d 100644 --- a/src/routes/contacts.index.tsx +++ b/src/routes/contacts.index.tsx @@ -262,7 +262,7 @@ function ContactsIndex() { load(); }; - const visibleIds = filtered.map((r) => r.id); + const visibleIds = visibleRows.map((r) => r.id); const allVisibleSelected = visibleIds.length > 0 && visibleIds.every((id) => selected.has(id)); const someVisibleSelected = visibleIds.some((id) => selected.has(id));