From cdb8c79033753faa739d06ec53da269af8d5ad74 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Thu, 31 Jul 2025 00:08:00 +0200 Subject: [PATCH] Log --- app/profiles/[id]/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/profiles/[id]/page.tsx b/app/profiles/[id]/page.tsx index a1e3257d..8d1e44bf 100644 --- a/app/profiles/[id]/page.tsx +++ b/app/profiles/[id]/page.tsx @@ -18,6 +18,7 @@ export default function Post() { useEffect(() => { async function fetchImage() { const res = await fetch(`/api/profiles/${id}`); + console.log('res', res); if (res.ok) { const data = await res.json(); setUser(data);