feat: Add a newline for improved readability in BlogPostUtil class

This commit is contained in:
Simon Larsen
2025-08-19 12:15:23 +01:00
parent 01b0e01ca8
commit cd2ce3f1a8

View File

@@ -191,6 +191,7 @@ export default class BlogPostUtil {
let blogPostAuthor: BlogPostAuthor | null = null;
try {
const blogsMeta: Array<JSONObject> = await this.getBlogsMeta();
const meta: JSONObject | undefined = blogsMeta.find((b: JSONObject) => {
return (b["post"] as string) === fileName;
});