Adjust tone for opportunity stat
cgen-de40d5c09ae243cc84b99efd222e718a
This commit is contained in:
parent
44f2abbc65
commit
cde40df149
1 changed files with 3 additions and 3 deletions
|
|
@ -297,7 +297,7 @@ export default function Admin() {
|
|||
{
|
||||
title: "Pending project applications",
|
||||
value: projectApplicationsLoading
|
||||
? "<EFBFBD><EFBFBD><EFBFBD>"
|
||||
? "…"
|
||||
: pendingProjectApplications.toString(),
|
||||
description: "Project collaboration requests awaiting review.",
|
||||
trend: projectApplicationsLoading
|
||||
|
|
@ -314,9 +314,9 @@ export default function Admin() {
|
|||
description: "Contributor & career submissions captured via Opportunities.",
|
||||
trend: opportunityApplicationsLoading
|
||||
? "Syncing applicant data…"
|
||||
: `${opportunityApplications.filter((app) => (app.status ?? "new").toLowerCase() === "new").length} new this week`,
|
||||
: `${opportunityApplications.filter((app) => (app.status ?? "new").toLowerCase() === "new").length} awaiting review`,
|
||||
icon: Rocket,
|
||||
tone: "teal" as const,
|
||||
tone: "green" as const,
|
||||
},
|
||||
],
|
||||
[
|
||||
|
|
|
|||
Loading…
Reference in a new issue