Added missing const. How did I not ever catch this?

This commit is contained in:
George Mandis 2021-11-14 19:51:42 -08:00
parent c4aa99d086
commit 5c84d7402e

View File

@ -93,7 +93,7 @@ const getTimestamp = (obj) => {
const contentFromAllFeeds = {};
const errors = [];
for (group in feeds) {
for (const group in feeds) {
contentFromAllFeeds[group] = [];
for (let index = 0; index < feeds[group].length; index++) {