Skip to content

Commit

Permalink
fix: companies amount (#721)
Browse files Browse the repository at this point in the history
  • Loading branch information
Darguima authored Feb 7, 2024
1 parent 097f284 commit a79c80e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions layout/Attendee/Profile/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ function Profile() {
} else if (companyBadges < 25) {
level = 4;
neededBadges = 25 - companyBadges;
} else if (companyBadges < 29) {
} else if (companyBadges < 28) {
level = 5;
neededBadges = 29 - companyBadges;
neededBadges = 28 - companyBadges;
} else {
level = 6;
neededBadges = 0;
Expand Down Expand Up @@ -243,7 +243,7 @@ function Profile() {
{levelEntries[4]} entries
</p>
<p className="font-iregular">
<b className="font-ibold">Level 6</b> 29 companies &rarr; +
<b className="font-ibold">Level 6</b> 28 companies &rarr; +
{levelEntries[5]} entries
</p>

Expand Down

0 comments on commit a79c80e

Please sign in to comment.