diff --git a/src/app/home-page/components/ArticleFeed.tsx b/src/app/home-page/components/ArticleFeed.tsx index d5fbfce..e37b4d0 100644 --- a/src/app/home-page/components/ArticleFeed.tsx +++ b/src/app/home-page/components/ArticleFeed.tsx @@ -560,7 +560,9 @@ export default function ArticleFeed() { const articleHref = isImported && article.externalUrl ? article.externalUrl : `/articles/${article?.slug}`; - const linkProps = isImported ? { target: "_blank", rel: "noopener noreferrer" } : {}; + const linkProps = isImported && article.externalUrl + ? { target: "_blank", rel: "noopener noreferrer" } + : {}; // Mobile in-feed ad after every Nth article (skip if last item). const isAdSlot = @@ -621,7 +623,7 @@ export default function ArticleFeed() { {...linkProps} className="read-more flex-shrink-0 text-[11px] focus:outline-none focus-visible:underline" aria-label={`Read more about ${article?.title}`}> - {isImported ? "View Original »" : "Read More »"} + Read More...