Skip to content

Commit

Permalink
update wording
Browse files Browse the repository at this point in the history
  • Loading branch information
remiriv committed Jan 4, 2023
1 parent 732a760 commit b545df9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/src/modules/play/Stats/StatsGraphs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ function useStackedEnergyData() {
const initialPersona = getPlayerValuesByStep(0, game, personaBySteps);
const initialValues = [
{
name: "Consommation",
name: "Conso init",
total: sumAllValues(initialPersona.consumption) || 0,
renewable: sumFor(initialPersona.consumption, "renewable"),
fossil: sumFor(initialPersona.consumption, "fossil"),
mixte: sumFor(initialPersona.consumption, "mixte"),
grey: sumFor(initialPersona.consumption, "grey"),
},
{
name: "Production",
name: "Prod init",
total: sumAllValues(initialPersona.production) || 0,
offshore: sumFor(initialPersona.production, "offshore"),
nuclear: sumFor(initialPersona.production, "nuclear"),
Expand Down

0 comments on commit b545df9

Please sign in to comment.