From 0e18adcb717da573f8d5537aa37dd153a04d79c6 Mon Sep 17 00:00:00 2001 From: development Date: Wed, 28 Jan 2026 00:33:57 +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 05b56e7..35a2a51 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -54,7 +54,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) { @@ -85,7 +86,7 @@ export default function BlogPage() { ); -} \ No newline at end of file +}