Skip to content

Commit

Permalink
unfreeze ERAS class count, update ouroboros offsets (#7167)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcjohnso authored Sep 9, 2024
1 parent 7a692c9 commit 7807fca
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions app/pages/home-not-logged-in/research.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,13 @@ counterpart.registerTranslations('en', {
}
});

const GZ123_COUNT = 98989226
const OUROBOROS_COUNT = 142800311
const OTHERS_COUNT = 8680290
const OUROBOROS_USER_COUNT = 124921

/* TEMPORARY - Aug 2024: freezing classification count until FEM homepage launch */
const PANOPTES_COUNT = 580300364
const PREPANOPTES_COUNT = 25284786
const OUROBOROS_USER_COUNT = 114576

const HomePageResearch = (({ count, screenWidth, showDialog, volunteerCount }) =>
<section className="home-research">
<Translate className="tertiary-kicker" component="h2" content="researchHomePage.works" />
<span className="class-counter">{(PANOPTES_COUNT + GZ123_COUNT + OUROBOROS_COUNT + OTHERS_COUNT).toLocaleString()}</span>
<span className="class-counter">{(count + PREPANOPTES_COUNT).toLocaleString()}</span>
<Translate className="main-kicker" component="h3" content="researchHomePage.classifications" />
<div className="home-research__classification-count">
<h3 className="main-kicker">{(volunteerCount + OUROBOROS_USER_COUNT).toLocaleString()}</h3>{' '}
Expand Down

0 comments on commit 7807fca

Please sign in to comment.