From 10381c01105ed3e5398f27b7446fdfb695f7d5cd Mon Sep 17 00:00:00 2001 From: Victor Gerbrands Date: Thu, 4 May 2023 15:00:40 +0200 Subject: [PATCH] fix: remove seo attributes from pdp --- app/product/[handle]/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/product/[handle]/page.tsx b/app/product/[handle]/page.tsx index 1af2be940..ce924f09e 100644 --- a/app/product/[handle]/page.tsx +++ b/app/product/[handle]/page.tsx @@ -28,8 +28,8 @@ export async function generateMetadata({ const hide = !product.tags.includes(HIDDEN_PRODUCT_TAG); return { - title: product.seo?.title || product.title, - description: product.seo?.description || product.description, + title: product.title, + description: product.description, robots: { index: hide, follow: hide,