From 5751a1255b77f368deed00005be5cb9690b58bff Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Wed, 12 Jan 2022 09:05:45 -0800 Subject: [PATCH] fix(html): set default link color for safari (#11353) --- packages/html-reporter/src/links.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/html-reporter/src/links.tsx b/packages/html-reporter/src/links.tsx index f94e4f7e6a..424f780f5d 100644 --- a/packages/html-reporter/src/links.tsx +++ b/packages/html-reporter/src/links.tsx @@ -49,7 +49,7 @@ export const Link: React.FunctionComponent<{ title?: string, children: any, }> = ({ href, className, children, title }) => { - return {children}; + return {children}; }; export const ProjectLink: React.FunctionComponent<{