From 9b89d1afc6422d8e20ead94aa8e30d994027229e Mon Sep 17 00:00:00 2001 From: development Date: Thu, 29 Jan 2026 18:55:28 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 02b0706..a7e3176 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -56,7 +56,8 @@ export default function BlogPage() { const url = `${apiUrl}/posts/${projectId}?status=published`; const response = await fetch(url, { method: "GET", headers: { - "Content-Type": "application/json"}, + "Content-Type": "application/json" + }, }); if (response.ok) { @@ -163,4 +164,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +}