Skip to content

Commit

Permalink
Fix Keys in Summary Menu
Browse files Browse the repository at this point in the history
  • Loading branch information
xsn34kzx committed Aug 20, 2024
1 parent 9acc654 commit a733155
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/summary-ui-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ export default class SummaryUiHandler extends UiHandler {
pageContainer.add(statsContainer);

PERMANENT_STATS.forEach((stat, s) => {
const statName = getStatKey(stat);
const statName = i18next.t(getStatKey(stat));
const rowIndex = s % 3;
const colIndex = Math.floor(s / 3);

Expand Down

0 comments on commit a733155

Please sign in to comment.