Skip to content

Commit

Permalink
hotfix of employeecount and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
anemne committed Nov 22, 2024
1 parent 8e92437 commit 1d52b5c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/components/sections/employees/EmployeeList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,9 @@ export default function EmployeeList({

<p className={styles.employeeCount}>
{t("show")}{" "}
<span className={styles.employeeCountValue}>{employees.length}</span>{" "}
<span className={styles.employeeCountValue}>
{filteredEmployees.length}
</span>{" "}
{t("of")}{" "}
<span className={styles.employeeCountValue}>{employees.length}</span>{" "}
{t("consultants")}
Expand Down
2 changes: 0 additions & 2 deletions src/components/sections/employees/employees.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,11 @@
max-width: 1400px;
width: 100%;
text-wrap: wrap;
align-items: center;
gap: 0.5rem;
}

.peopleContainer {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}

0 comments on commit 1d52b5c

Please sign in to comment.