Skip to content

Commit

Permalink
hotfix: 여러 out link 새화면으로 띄우도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
oooppq committed Jan 30, 2024
1 parent c47ea4d commit 82b4b59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/common/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const Footer = () => {
<span className="">안여진</span>

<span className="">이메일</span>
<Link href="mailto:[email protected]" className="">
<Link href="mailto:[email protected]" className="" target="_blank">
[email protected]
</Link>

Expand Down
2 changes: 1 addition & 1 deletion components/detail/HereToBuy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const HereTobuy = async ({ id, brandName, fragranceName }: BuyProps) => {
<div className="grid gap-y-3">
{data.purchaseList.map(
({ link, image }: { link: string; image: string }) => (
<Link key={`${link}-${image}`} href={link}>
<Link key={`${link}-${image}`} href={link} target="_blank">
<div className="flex items-center">
<Image
src={image}
Expand Down

0 comments on commit 82b4b59

Please sign in to comment.