Skip to content

Commit

Permalink
feat: 링크 새로운 탭으로 열리도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
99-zziy committed Sep 23, 2023
1 parent 9a8f76f commit d9d5ff6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Thumbnail/Thumbnail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export function Thumbnail({ title, subTitle, img, description, links }: Thumbnai
<div css={linkContainerCss}>
{links.map(link => (
<span key={link.type} css={linkWrapperCss}>
<a href={link.href} css={linkCss}>
<a href={link.href} target="_blank" css={linkCss} rel="noreferrer">
{link.type}
</a>
<span>
Expand Down

0 comments on commit d9d5ff6

Please sign in to comment.