diff --git a/src/app/products/[slug]/page.tsx b/src/app/products/[slug]/page.tsx index 6dc4c71..e7e1474 100644 --- a/src/app/products/[slug]/page.tsx +++ b/src/app/products/[slug]/page.tsx @@ -14,7 +14,7 @@ export default async function StandardProductPage({ params }: { params: { slug: const product = toProductDTO(row, activePromotions, 'plain'); const relatedRows = await prisma.product.findMany({ - where: { category: product.category, showOnProducts: true, NOT: { id: product.id } }, + where: { category: product.category, showAsReadyMade: true, NOT: { id: product.id } }, take: 4, }); const related = relatedRows.map((p) => toProductDTO(p, activePromotions, 'plain'));