From 3cd2b29a370b44f2da34753830bddf5572da1621 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Tue, 1 Oct 2024 18:50:11 -0700 Subject: [PATCH] Prod: fixes --- src/apps/news/news.data.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/apps/news/news.data.tsx b/src/apps/news/news.data.tsx index 9d16709a2..16942c0cb 100644 --- a/src/apps/news/news.data.tsx +++ b/src/apps/news/news.data.tsx @@ -327,8 +327,10 @@ function B(props: { ); if (!href) return boldText; + // append UTM details if missing + const hrefWithUtm = href.includes('utm_source=') ? href : href + clientUtmSource(); return ( - + {boldText} );