From ea79ee9bc3de87522bc497e371ef441c95d62b9f 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 04:24:12 +0000 Subject: [PATCH] Changes Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com> --- src/routes/contacts.index.tsx | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/routes/contacts.index.tsx b/src/routes/contacts.index.tsx index 84885ff..aa26dd8 100644 --- a/src/routes/contacts.index.tsx +++ b/src/routes/contacts.index.tsx @@ -265,8 +265,50 @@ function ContactsIndex() { ))} + {selected.size > 0 && ( + + + + {selected.size} selected + + bulkArchive(view !== "archived")}> + {view === "archived" ? : } + {view === "archived" ? "Restore" : "Archive"} + + + + + + + {CONTACT_TYPES.map((t) => ( + {t.label} + ))} + + + + Delete + + + Clear + + + + )} + + {filtered.length > 0 && !loading && ( + + + + Select all {filtered.length} visible + + + )} {loading ? ( Loading… ) : filtered.length === 0 ? (
Loading…