From 5cd4e6c5bb4b0d7c9e25e8fe2f1fe2776fad93c0 Mon Sep 17 00:00:00 2001 From: development Date: Sat, 24 Jan 2026 10:37:34 +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 64b04a7..5d892d5 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) { @@ -123,7 +124,7 @@ export default function BlogPage() { )} ); -} \ No newline at end of file +}