diff --git a/index.html b/index.html index 85f90c3..61e3df4 100644 --- a/index.html +++ b/index.html @@ -243,7 +243,7 @@

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; }); };