upstream #1

Merged
jblu merged 1007 commits from upstream into main 2024-11-04 22:35:57 -06:00
Showing only changes of commit c344b157f2 - Show all commits

View File

@ -15,7 +15,9 @@ const CustomLink = ({ href, ...rest }: LinkProps & AnchorHTMLAttributes<HTMLAnch
return <a className="break-words" href={href} {...rest} /> return <a className="break-words" href={href} {...rest} />
} }
return <a className="break-words" target="_blank" rel="noopener noreferrer" href={href} {...rest} /> return (
<a className="break-words" target="_blank" rel="noopener noreferrer" href={href} {...rest} />
)
} }
export default CustomLink export default CustomLink