diff --git a/layers/components/atoms/Button/Sns.vue b/layers/components/atoms/Button/Sns.vue index 747884a..3797bff 100644 --- a/layers/components/atoms/Button/Sns.vue +++ b/layers/components/atoms/Button/Sns.vue @@ -20,23 +20,11 @@ const snsList = computed(() => { }) const handleMouseEnter = () => { - if (isForceClosed.value) return showSnsList.value = true } -const handleMouseLeave = () => { - if (isForceClosed.value) return - showSnsList.value = false -} - const handleForceClose = () => { - isForceClosed.value = true showSnsList.value = false - - // 일정 시간 뒤 다시 hover 가능하도록 초기화 - setTimeout(() => { - isForceClosed.value = false - }, 500) } const handleCopy = async () => { @@ -53,14 +41,12 @@ const handleCopy = async () => {