Skip to content

Commit

Permalink
opening url in a separate tab for sponsors
Browse files Browse the repository at this point in the history
  • Loading branch information
pavanpodila committed Jan 10, 2024
1 parent 79127ce commit c05c85f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/components/home/Sponsor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { sponsors } from '../../data/sponsors';

export const Sponsor = ({ logo, url }) => {
return (
<a href={url}>
<a href={url} target={'_blank'}>
<img src={logo} height={64} />
</a>
);
Expand Down

0 comments on commit c05c85f

Please sign in to comment.