Update src/app/blog/page.tsx

This commit is contained in:
2026-01-22 08:24:10 +00:00
parent 4015a06a25
commit 6e81fd71aa

View File

@@ -54,7 +54,8 @@ export default function BlogPage() {
const url = `${apiUrl}/posts/${projectId}`; const url = `${apiUrl}/posts/${projectId}`;
const response = await fetch(url, { const response = await fetch(url, {
method: "GET", headers: { method: "GET", headers: {
"Content-Type": "application/json"}, "Content-Type": "application/json"
},
}); });
if (response.ok) { if (response.ok) {