Reviewed all IconCard for non-matching icons

This commit is contained in:
Joao Ramos
2024-01-12 20:00:31 +00:00
parent 72b9e1f11d
commit 9e6dc4b4c2

View File

@@ -265,7 +265,7 @@ export default function AdminDashboard({user}: Props) {
/>
<IconCard
onClick={() => setPage("inactiveStudents")}
Icon={BsPerson}
Icon={BsPersonFill}
label="Inactive Students"
value={
users.filter((x) => x.type === "student" && (x.status === "disabled" || moment().isAfter(x.subscriptionExpirationDate)))
@@ -275,7 +275,7 @@ export default function AdminDashboard({user}: Props) {
/>
<IconCard
onClick={() => setPage("inactiveCountryManagers")}
Icon={BsPerson}
Icon={BsBriefcaseFill}
label="Inactive Country Managers"
value={users.filter(inactiveCountryManagerFilter).length}
color="rose"