Removes extra flat

This commit is contained in:
Michael Novotny 2023-08-01 20:27:39 -05:00
parent 4db661019f
commit 6472a8c162
No known key found for this signature in database

View File

@ -45,5 +45,5 @@ export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
throw JSON.stringify(error, null, 2);
}
return [...routesMap, ...fetchedRoutes.flat()];
return [...routesMap, ...fetchedRoutes];
}