diff --git a/src/app/made-to-order/[slug]/page.tsx b/src/app/made-to-order/[slug]/page.tsx index 85cecb4..a4e377e 100644 --- a/src/app/made-to-order/[slug]/page.tsx +++ b/src/app/made-to-order/[slug]/page.tsx @@ -35,9 +35,6 @@ 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}`); } } diff --git a/src/components/DesignCanvas.tsx b/src/components/DesignCanvas.tsx index 8055aa9..880a6f5 100644 --- a/src/components/DesignCanvas.tsx +++ b/src/components/DesignCanvas.tsx @@ -504,11 +504,6 @@ export default function DesignCanvas({ designId?: string; customPhoto?: string; }) { - // Debug: Log if custom photo is received - if (customPhoto) { - console.log('✓ Custom photo received in DesignCanvas'); - } - const [color, setColor] = useState(initialColor ?? product.colors[0]); const [size, setSize] = useState(initialSize ?? (product.sizes[0] ?? null)); const [designWidthCm, setDesignWidthCm] = useState(null);