From f72840b74810d20789cd400f5cbb194d0ef1e902 Mon Sep 17 00:00:00 2001 From: development Date: Thu, 22 Jan 2026 20:03:28 +0000 Subject: [PATCH] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index b13a1ef..4012467 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -79,7 +79,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) { @@ -152,7 +153,7 @@ export default function BlogPage() { )} ); -} \ No newline at end of file +}