1 Commits

Author SHA1 Message Date
6e81fd71aa Update src/app/blog/page.tsx 2026-01-22 08:24:10 +00:00

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