Skip to content

Commit

Permalink
fix(contact): change instagram URL into ID (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
delphox60 committed Oct 30, 2023
1 parent b7f037a commit 3ca6826
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/contact/contactBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default defineComponent({
instagram: {
icon: require("~/assets/img/instagram.svg"),
iconText: "Instagram",
text: "https://www.instagram.com/team_nexters/",
text: "@team_nexters",
link: "",
},
},
Expand Down
4 changes: 4 additions & 0 deletions pages/contact.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ export default defineComponent({
alert("'[email protected]' 메일 주소를 복사했습니다. ");
break;
}
case "instagram": {
window.open("https://www.instagram.com/team_nexters");
break;
}
}
return;
},
Expand Down

0 comments on commit 3ca6826

Please sign in to comment.