From 4afeb1e375fde0e80da8410d783da6de06439f71 Mon Sep 17 00:00:00 2001 From: Samantha Kellow Date: Thu, 27 Jul 2023 19:43:20 +0100 Subject: [PATCH] target="_blank" on certificationLink --- components/product/description-content.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/components/product/description-content.tsx b/components/product/description-content.tsx index c21bc116c..730dae759 100644 --- a/components/product/description-content.tsx +++ b/components/product/description-content.tsx @@ -23,7 +23,11 @@ export function DescriptionContent({ product }: { product: Product }) { } const certificationLink = (credType: keyof typeof credentials) => { - return {credentials[credType].title} certified + return {credentials[credType].title} certified } const commonDetailKeys = Object.keys(itemDetails.common)