Skip to content

Commit

Permalink
partner links should default open in new tab/window
Browse files Browse the repository at this point in the history
  • Loading branch information
mckelvey committed Nov 26, 2024
1 parent 7eacdd1 commit c1d6325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/interactive/links/link-partner/link-partner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const LinkPartner: React.FC<LinkPartnerProps> = ({
const { imageScale, imageSrc, name } = PARTNERS[partnerName]

return (
<StyledPartner {...props}>
<StyledPartner target="_blank" rel="noopener" {...props}>
{imageSrc ? (
<StyledImage alt={name} src={imageSrc} $imageScale={imageScale} />
) : (
Expand Down

0 comments on commit c1d6325

Please sign in to comment.