Skip to content

Commit faec49e

Browse files
format
1 parent e62cd5f commit faec49e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/utils/src/internals/sitemap.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -550,9 +550,7 @@ export async function* discoverValidSitemaps(
550550
firstUrl.pathname = pathname;
551551
return firstUrl.toString();
552552
});
553-
const candidateResults = await Promise.allSettled(
554-
candidateSitemapUrls.map(urlExists),
555-
);
553+
const candidateResults = await Promise.allSettled(candidateSitemapUrls.map(urlExists));
556554

557555
for (const [index, result] of candidateResults.entries()) {
558556
const candidateSitemapUrl = candidateSitemapUrls[index];

0 commit comments

Comments
 (0)