We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e62cd5f commit faec49eCopy full SHA for faec49e
packages/utils/src/internals/sitemap.ts
@@ -550,9 +550,7 @@ export async function* discoverValidSitemaps(
550
firstUrl.pathname = pathname;
551
return firstUrl.toString();
552
});
553
- const candidateResults = await Promise.allSettled(
554
- candidateSitemapUrls.map(urlExists),
555
- );
+ const candidateResults = await Promise.allSettled(candidateSitemapUrls.map(urlExists));
556
557
for (const [index, result] of candidateResults.entries()) {
558
const candidateSitemapUrl = candidateSitemapUrls[index];
0 commit comments