diff --git a/src/app/made-to-order/[slug]/page.tsx b/src/app/made-to-order/[slug]/page.tsx index a4e377e..85cecb4 100644 --- a/src/app/made-to-order/[slug]/page.tsx +++ b/src/app/made-to-order/[slug]/page.tsx @@ -35,6 +35,9 @@ export default async function ProductDetailPage({ }); if (customRequest) { customPhoto = customRequest.imageDataUrl; + console.log(`✓ Found custom photo for request ${searchParams.customRequestId}`); + } else { + console.log(`✗ Custom request not found: ${searchParams.customRequestId}`); } }