Skip to content

Commit 04a1128

Browse files
committed
chore(examples): fix lint
1 parent ebf08aa commit 04a1128

File tree

1 file changed

+3
-3
lines changed
  • examples/cms-sitefinity/lib

1 file changed

+3
-3
lines changed

examples/cms-sitefinity/lib/api.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ export async function getAllPostSlugsFromCms(): Promise<string[]> {
2121
}
2222
`
2323

24-
const blogPosts = await executeGraphQLForBlogPosts(query);
25-
const slugs = blogPosts.map((x) => x.itemDefaultUrl);
26-
return slugs;
24+
const blogPosts = await executeGraphQLForBlogPosts(query)
25+
const slugs = blogPosts.map((x) => x.itemDefaultUrl)
26+
return slugs
2727
}
2828

2929
function transformImageUrl(url: string) {

0 commit comments

Comments
 (0)