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…