Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nadiavanleur committed Mar 25, 2024
1 parent bbc66de commit 07e1ec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ <h2 class="c-title">
Object.keys(FIELDS).forEach((key) => {
console.log(totals, totals.find);

const value = totals.find((total) => total.includes(FIELDS[key]))[1];
const value = totals.find(total => total.includes(FIELDS[key]))[1];
document.getElementById(key).innerHTML = value;
});
};
Expand Down

0 comments on commit 07e1ec9

Please sign in to comment.