diff --git a/client/pages/Admin.tsx b/client/pages/Admin.tsx index e3ad12cc..380f3d2a 100644 --- a/client/pages/Admin.tsx +++ b/client/pages/Admin.tsx @@ -364,6 +364,22 @@ export default function Admin() { icon: ClipboardList, action: () => setActiveTab("operations"), }, + { + label: "Opportunity applicants", + description: + "Review contributor and career applications from Opportunities.", + icon: Users, + action: () => { + setActiveTab("operations"); + if (typeof window !== "undefined") { + setTimeout(() => { + document + .getElementById("opportunity-applications") + ?.scrollIntoView({ behavior: "smooth", block: "start" }); + }, 75); + } + }, + }, { label: "Open Builder CMS", description: "Edit marketing pages and landing content in Builder.io.",