Skip to content

Commit 6829652

Browse files
committed
fix: Incorrect var
1 parent d746bfa commit 6829652

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/console-errors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ const consoleErrors = async (domain) => {
9696
const pagesToCheckChunks = chunkArray(pagesToCheck, 20);
9797
let errorMessage = '';
9898
for (let i = 0; i < pagesToCheckChunks.length; i++) {
99-
const urls = pagesToCheck[i];
99+
const urls = pagesToCheckChunks[i];
100100
const errorsFoundGroups = urls.map((url) => {
101101
console.log(`checking page ${url}`);
102102
return checkPage(url);

0 commit comments

Comments
 (0)