-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added numbers of apps above accepted and waitlisted threshold #549
Conversation
Deploy preview for irvinehacks-site-2025 ready!
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome start Jenny! Here are a few comments
apps/site/src/app/admin/applicants/hackers/HackerApplicants.tsx
Outdated
Show resolved
Hide resolved
apps/site/src/app/admin/applicants/hackers/HackerApplicants.tsx
Outdated
Show resolved
Hide resolved
const counter = | ||
selectedStatuses.length > 0 || selectedDecisions.length > 0 | ||
? `(${items.length}/${applicantList.length})` | ||
: `(${applicantList.length})`; | ||
? `${items.length}/${applicantList.length}` | ||
: `${applicantList.length}`; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Relating to my other comment about the counter
, this change isn't needed if you leave the counter
as it was written before your commits
apps/site/src/app/admin/applicants/hackers/HackerApplicants.tsx
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the work Jenny! I will merge this in after apps close
fixes #537