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