Rename pending applications calculations
cgen-d4a106acdb2d4ca587378c2b93b297e8
This commit is contained in:
parent
366f8d014f
commit
e7505fe330
1 changed files with 1 additions and 1 deletions
|
|
@ -259,7 +259,7 @@ export default function Admin() {
|
||||||
const totalMembers = managedProfiles.length;
|
const totalMembers = managedProfiles.length;
|
||||||
const publishedPosts = blogPosts.length;
|
const publishedPosts = blogPosts.length;
|
||||||
const featuredStudios = studios.length;
|
const featuredStudios = studios.length;
|
||||||
const pendingApplications = applications.filter((app) => {
|
const pendingProjectApplications = projectApplications.filter((app) => {
|
||||||
const status = (app.status ?? "").toLowerCase();
|
const status = (app.status ?? "").toLowerCase();
|
||||||
return (
|
return (
|
||||||
status !== "approved" && status !== "completed" && status !== "closed"
|
status !== "approved" && status !== "completed" && status !== "closed"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue