Update src/app/blog/page.tsx

This commit is contained in:
2026-01-29 13:53:26 +00:00
parent e6b606dbe7
commit 55e616f96a

View File

@@ -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) {