We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebf08aa commit 04a1128Copy full SHA for 04a1128
examples/cms-sitefinity/lib/api.ts
@@ -21,9 +21,9 @@ export async function getAllPostSlugsFromCms(): Promise<string[]> {
21
}
22
`
23
24
- const blogPosts = await executeGraphQLForBlogPosts(query);
25
- const slugs = blogPosts.map((x) => x.itemDefaultUrl);
26
- return slugs;
+ const blogPosts = await executeGraphQLForBlogPosts(query)
+ const slugs = blogPosts.map((x) => x.itemDefaultUrl)
+ return slugs
27
28
29
function transformImageUrl(url: string) {
0 commit comments