From 32b2701c041f875513fa9d73825a48870bbaf415 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Tue, 14 Oct 2025 04:25:37 +0000 Subject: [PATCH] Add opportunity quick action cgen-018b0268e44544b98bcda5e192d9f5b2 --- client/pages/Admin.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) 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.",