Skip to content

Commit 4716e50

Browse files
authored
fix: missing comma in post (#317)
1 parent d56e6ff commit 4716e50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/blog-bff/articles/api/src/lib/wp-posts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class WpPosts {
5050
.join(',');
5151

5252
return this._wpClient.get<WPPostDetailsDto>(`posts/${slug}`, {
53-
_fields: `id,type,slug,title.rendered,author,content.rendered,date,featured_image_url,author_details,acf,other_translations,lang,author_details.al_titles${yoast_props}`,
53+
_fields: `id,type,slug,title.rendered,author,content.rendered,date,featured_image_url,author_details,acf,other_translations,lang,${yoast_props}`,
5454
});
5555
}
5656
}

0 commit comments

Comments
 (0)